realityplayground-of/zoneb/bin/data/shaders/particles/update.vert

11 lines
139 B
GLSL
Raw Normal View History

2020-10-20 12:02:10 +00:00
in vec4 position;
in vec2 texcoord;
out vec2 texCoordVarying;
void main()
{
texCoordVarying = texcoord;
gl_Position = position;
}