summaryrefslogtreecommitdiff
path: root/demo.fs
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-05-23 11:56:10 -0500
committersanine-a <sanine.not@pm.me>2020-05-23 11:56:10 -0500
commit018b7ce3f7d94af92fa4fab32ffdde451da7fcb9 (patch)
tree54a320cd0a18d0cabf4caee3f784c5414c11d6f4 /demo.fs
parenta247c0adac7b3e50c72fde9b197ef6eabfd38b0b (diff)
refactor: rename number, vector, etc in honey_shader_set_* to value
Diffstat (limited to 'demo.fs')
-rw-r--r--demo.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo.fs b/demo.fs
index af6e190..791149c 100644
--- a/demo.fs
+++ b/demo.fs
@@ -12,6 +12,6 @@ out vec4 FragColor;
void main()
{
FragColor = mix(texture(box_texture, texture_coordinate),
- vec4(extra_color.xyz, 1.0),
+ texture(happy_texture, texture_coordinate),
0.2);
}