mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-06 14:19:18 -05:00
13 lines
224 B
GLSL
13 lines
224 B
GLSL
#version 330 core
|
|
|
|
layout (location = 0) in vec3 vertexPosition;
|
|
layout (location = 1) in vec2 vertexTexCoord;
|
|
|
|
out vec2 texCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(vertexPosition, 1.0);
|
|
texCoord = vertexTexCoord;
|
|
}
|