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

12 lines
157 B
Text
Raw Normal View History

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