1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Voxel-Test/VBO/res/shaders/main.frag
2015-07-15 17:19:40 +02:00

8 lines
No EOL
95 B
GLSL

#version 330
out vec4 fragColor;
in vec4 color;
void main(void){
fragColor = color;
}