mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
10 lines
174 B
GLSL
10 lines
174 B
GLSL
#version 430
|
|
|
|
layout (location=0) in vec2 inTexCoords;
|
|
|
|
out vec2 texCoords;
|
|
|
|
void main() {
|
|
texCoords = inTexCoords;
|
|
gl_Position = vec4(inTexCoords*2 - vec2(1, 1), 0, 1);
|
|
} |