let there be textures

This commit is contained in:
2023-06-01 22:34:10 +02:00
parent 56daae2c9e
commit 66c96af62a
2 changed files with 18 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ out vec4 outColor;
void main(){
vec4 kit = texture(kitty, TexCoords);
vec4 pup = texture(puppy, TexCoords);
outColor = pup;
outColor = mix(kit, pup, 0.5);
}
/* vim: set ft=glsl: */