first commit
This commit is contained in:
commit
3a92f526a0
11 changed files with 2222 additions and 0 deletions
8
playground/src/shaders/fragment_shader.glsl
Normal file
8
playground/src/shaders/fragment_shader.glsl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#version 140
|
||||
|
||||
in vec3 vertex_color;
|
||||
out vec4 color;
|
||||
|
||||
void main() {
|
||||
color = vec4(vertex_color, 1.0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue