mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 07:15:38 +00:00
8dcb8601a2
Hopefully this is the first and last time we have to do this.
9 lines
217 B
GLSL
9 lines
217 B
GLSL
#version 120
|
|
|
|
flat varying vec4 vColor; // must be flat, cannot have this interpolated in any way
|
|
|
|
void main(void)
|
|
{
|
|
vColor = gl_Color;
|
|
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; // ftransform();
|
|
} |