minecraft-launcher/launcher/resources/shaders/vshader_skin_background.glsl

11 lines
157 B
GLSL

attribute vec4 a_position;
attribute vec2 a_texcoord;
varying vec2 v_texcoord;
void main()
{
gl_Position = a_position;
v_texcoord = a_texcoord;
}