mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 20:05:37 +00:00
9 lines
225 B
GLSL
9 lines
225 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();
|
|
} |