mirror of
https://git.zelz.net/catfoolyou/Project164.git
synced 2025-12-14 14:07:40 +00:00
75 errors
This commit is contained in:
13
lwjgl-rundir/resources/glsl/pvert.glsl
Normal file
13
lwjgl-rundir/resources/glsl/pvert.glsl
Normal file
@@ -0,0 +1,13 @@
|
||||
#line 0
|
||||
|
||||
precision lowp int;
|
||||
precision lowp sampler2D;
|
||||
precision lowp float;
|
||||
|
||||
in vec2 a_pos;
|
||||
|
||||
out vec2 pos;
|
||||
|
||||
void main(){
|
||||
gl_Position = vec4((pos = a_pos) * 2.0 - 1.0, 0.0, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user