summaryrefslogtreecommitdiffhomepage
path: root/examples/shaders/shaders_simple_mask.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shaders/shaders_simple_mask.c')
-rw-r--r--examples/shaders/shaders_simple_mask.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/shaders/shaders_simple_mask.c b/examples/shaders/shaders_simple_mask.c
index b46b65c7..981e6486 100644
--- a/examples/shaders/shaders_simple_mask.c
+++ b/examples/shaders/shaders_simple_mask.c
@@ -57,7 +57,7 @@ int main(void)
// Load the shader
Shader shader = LoadShader(0, TextFormat("resources/shaders/glsl%i/mask.fs", GLSL_VERSION));
-
+
// Load and apply the diffuse texture (colour map)
Texture texDiffuse = LoadTexture("resources/plasma.png");
model1.materials[0].maps[MATERIAL_MAP_DIFFUSE].texture = texDiffuse;
@@ -131,10 +131,10 @@ int main(void)
UnloadModel(model1);
UnloadModel(model2);
UnloadModel(model3);
-
+
UnloadTexture(texDiffuse); // Unload default diffuse texture
UnloadTexture(texMask); // Unload texture mask
-
+
UnloadShader(shader); // Unload shader
CloseWindow(); // Close window and OpenGL context