David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

9 lines
115 B
GLSL

#version 100
varying mediump vec4 varyingColor;
mediump vec4 calculateColor()
{
return varyingColor * 0.5;
}