Big reorganization
This commit is contained in:
parent
b903eced97
commit
44fb4197ca
11 changed files with 45 additions and 40 deletions
10
gl/quad.vert
Normal file
10
gl/quad.vert
Normal file
|
@ -0,0 +1,10 @@
|
|||
#version 120
|
||||
attribute vec2 vertex_position;
|
||||
attribute vec3 vertex_color;
|
||||
|
||||
varying vec3 frag_color;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(vertex_position, 0.9, 1.0);
|
||||
frag_color = vertex_color;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue