mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-15 13:22:31 -05:00
12 lines
185 B
Plaintext
12 lines
185 B
Plaintext
in vec2 position;
|
|
|
|
uniform highp mat4 projMatrix;
|
|
uniform vec4 color;
|
|
|
|
out vec4 Color;
|
|
|
|
void main() {
|
|
gl_Position = projMatrix * vec4(position, 0.0, 1.0);
|
|
Color = color;
|
|
}
|