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/A5/resources/simple_vert.glsl

12 lines
150 B
Text
Raw Normal View History

#version 120
uniform mat4 P;
uniform mat4 MV;
varying vec3 fragColor;
void main()
{
gl_Position = P * MV * gl_Vertex;
fragColor = gl_Color.rgb;
}