mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 01:45:38 +00:00
8 lines
193 B
Plaintext
8 lines
193 B
Plaintext
|
/* Copies incoming vertex color without change.
|
||
|
* Applies the transformation matrix to vertex position.
|
||
|
*/
|
||
|
void main()
|
||
|
{
|
||
|
gl_FrontColor = gl_Color;
|
||
|
gl_Position = ftransform();
|
||
|
}
|