mirror of
https://git.eaglercraft.rip/eaglercraft/eaglercraft-b1.3.git
synced 2025-04-16 21:47:40 -07:00
14 lines
182 B
GLSL
14 lines
182 B
GLSL
#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);
|
|
}
|