initial
This commit is contained in:
commit
9d7a6ec8c0
7 changed files with 301 additions and 0 deletions
9
shaders/fragment.frag
Normal file
9
shaders/fragment.frag
Normal file
|
@ -0,0 +1,9 @@
|
|||
#version 450
|
||||
|
||||
layout(location = 0) in vec3 in_color;
|
||||
layout(location = 0) out vec4 out_color;
|
||||
|
||||
void main()
|
||||
{
|
||||
out_color = vec4(in_color, 1.0);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue