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/A6/resources/simple_frag.glsl

8 lines
87 B
GLSL

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