This website requires JavaScript.
Explore
Oven
Feed
Help
Sign In
ktyl
/
skein
Watch
1
Star
0
Fork
You've already forked skein
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4bab4bbcf7
skein
/
frag.glsl
9 lines
98 B
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: hello triangle Compile a vertex and fragment shader from the same directory as hello.cpp. Renders an orange triangle on a blue background.
2023-07-24 23:54:37 +02:00
#version 330 core
out vec4 FragColor;
void main()
{
chore: simplify time usage
2023-08-03 01:01:02 +02:00
FragColor = vec4(1.0, 0.5, 0.2, 1.0);
feat: hello triangle Compile a vertex and fragment shader from the same directory as hello.cpp. Renders an orange triangle on a blue background.
2023-07-24 23:54:37 +02:00
}