mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-01-17 20:58:28 +01:00
13 lines
166 B
GLSL
13 lines
166 B
GLSL
#version 150
|
|
|
|
in vec4 position;
|
|
in vec2 texCoord;
|
|
|
|
out Vertex {
|
|
vec2 vTexCoord;
|
|
};
|
|
|
|
void main() {
|
|
gl_Position = position;
|
|
vTexCoord = texCoord;
|
|
} |