1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
MrDev023-Cpp-Engine/res/shaders/test.vert

6 lines
122 B
GLSL
Raw Normal View History

2016-09-29 21:31:44 +02:00
#version 150
void main(void){
gl_FrontColor = gl_Color;
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}