Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
jgl-template/GLGameTemplate/Shaders/basic_shader.fsh
2013-01-05 12:41:46 +01:00

8 lines
104 B
GLSL
Executable file

varying lowp vec4 colorVarying;
void main() {
gl_FragColor = colorVarying;
gl_FragColor.a = 1.0;
}