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/A2/resources/frag.glsl

9 lines
101 B
Text
Raw Normal View History

2017-02-17 17:32:44 -06:00
#version 120
varying vec3 vCol;
void main()
{
gl_FragColor = vec4(vCol.r, vCol.g, vCol.b, 1.0);
}