This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
csce441pine64backup/L12/resources/simple_frag.glsl
2017-04-10 17:50:27 -05:00

8 lines
93 B
GLSL

#version 120
varying vec3 fragColor;
void main()
{
gl_FragColor = vec4(fragColor, 1.0);
}