This website requires JavaScript.
Explore
Help
Sign In
martin
/
protot
Watch
1
Star
0
Fork
You've already forked protot
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
ad4d671344
protot
/
data
/
shaders
/
fs_simple.glsl
8 lines
97 B
Plaintext
Raw
Normal View
History
Unescape
Escape
red triangle ... yay
2018-02-13 12:05:07 +01:00
#version 330 core
rendering to a frame buffer (but not yet drawing it again)
2018-02-13 12:44:34 +01:00
layout(location = 0) out vec3 color;
red triangle ... yay
2018-02-13 12:05:07 +01:00
void main() {
color = vec3(1, 0, 0);
}