mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
|
#version 150
|
||
|
|
||
|
in vec4 position;
|
||
|
in vec2 texCoord;
|
||
|
|
||
|
out Vertex {
|
||
|
vec2 vTexCoord;
|
||
|
};
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = position;
|
||
|
vTexCoord = texCoord;
|
||
|
}
|