Initial Commit
This commit is contained in:
11
data/shaders/test.vs
Normal file
11
data/shaders/test.vs
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 130
|
||||
|
||||
attribute vec2 a_position;
|
||||
attribute vec4 a_color;
|
||||
|
||||
varying vec4 v_color;
|
||||
|
||||
void main() {
|
||||
v_color = a_color;
|
||||
gl_Position = vec4(a_position.xy,0,1);
|
||||
}
|
||||
Reference in New Issue
Block a user