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

9 lines
139 B
Text
Raw Permalink Normal View History

2017-02-28 07:48:39 -06:00
#version 120
2017-02-28 10:55:40 -06:00
uniform int height;
2017-02-28 07:48:39 -06:00
varying vec3 vMyColor;
void main()
{
2017-02-28 10:55:40 -06:00
gl_FragColor = vec4(vMyColor.r, vMyColor.g, vMyColor.b, 1.0);
2017-02-28 07:48:39 -06:00
}