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.
Voxel-Test/VBO/res/shaders/main.frag

8 lines
95 B
GLSL
Raw Normal View History

2015-07-15 17:19:40 +02:00
#version 330
out vec4 fragColor;
in vec4 color;
void main(void){
fragColor = color;
}