You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/EMotionFX/Assets/Editor/Shaders/Downsample.glsl

7 lines
104 B
GLSL

uniform sampler2D inputMap;
void main()
{
gl_FragColor = texture2D( inputMap, gl_TexCoord[0].xy );
}