Add files via upload
This commit is contained in:
parent
f551f4713d
commit
b8b5c60dfc
7 changed files with 252 additions and 0 deletions
8
mandelbrot/resources/programs/vertex.glsl
Normal file
8
mandelbrot/resources/programs/vertex.glsl
Normal file
|
@ -0,0 +1,8 @@
|
|||
#version 440 core
|
||||
|
||||
|
||||
in vec3 in_position;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(in_position, 1);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue