Watch
2
0
Fork
You've already forked raylib-cs
0

Update/merge examples back into main repo

This commit is contained in:
Rgebee 2023-08-24 22:01:38 +01:00
commit f058b02d48
321 changed files with 57965 additions and 1 deletions

View file

@ -0,0 +1,23 @@
#version 330
// Input vertex attributes (from vertex shader)
in vec2 fragTexCoord;
in vec2 fragTexCoord2;
in vec3 fragPosition;
in vec4 fragColor;
// Input uniform values
uniform sampler2D texture0;
uniform sampler2D texture1;
// Output fragment color
out vec4 finalColor;
void main()
{
// Texel color fetching from texture sampler
vec4 texelColor = texture(texture0, fragTexCoord);
vec4 texelColor2 = texture(texture1, fragTexCoord2);
finalColor = texelColor * texelColor2;
}