jucraft/assets/shader/post.vsh.glsl

8 lines
149 B
Text
Raw Normal View History

2023-04-18 14:17:53 +02:00
#version 100
attribute vec2 pos;
attribute vec2 uv;
varying lowp vec2 texcoord;
void main() {
gl_Position = vec4(pos, 0, 1);
texcoord = uv;
}