aboutsummaryrefslogtreecommitdiffstats
path: root/examples/resources/textureshader.frag
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resources/textureshader.frag')
-rw-r--r--examples/resources/textureshader.frag2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/textureshader.frag b/examples/resources/textureshader.frag
index 1292de96..ae12f4b0 100644
--- a/examples/resources/textureshader.frag
+++ b/examples/resources/textureshader.frag
@@ -12,5 +12,5 @@ void main()
{
vec4 texture_colour = texture(texture_sampler, fragment_uv);
- colour = texture_colour;
+ colour = texture_colour * fragment_colour;
}