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
cf59f6b6ae
protot
/
data
/
shaders
/
fs_simple.glsl
8 lines
103 B
Plaintext
Raw
Normal View
History
Unescape
Escape
red triangle ... yay
2018-02-13 12:05:07 +01:00
#version 330 core
Added projection matrices code, tweaked stuff
2018-02-16 11:35:09 +01:00
layout(location = 0) out vec3 outColor;
red triangle ... yay
2018-02-13 12:05:07 +01:00
void main() {
Added projection matrices code, tweaked stuff
2018-02-16 11:35:09 +01:00
outColor = vec3(1, 0, 0);
red triangle ... yay
2018-02-13 12:05:07 +01:00
}