mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 11:05:39 +00:00
9 lines
225 B
Plaintext
9 lines
225 B
Plaintext
|
#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();
|
||
|
}
|