mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 04:34:50 +00:00
14 lines
174 B
GLSL
14 lines
174 B
GLSL
attribute vec4 myVertex;
|
|
|
|
uniform mat4 myPMVMatrix;
|
|
uniform vec4 myColor;
|
|
|
|
varying vec4 color;
|
|
|
|
void main(void)
|
|
{
|
|
gl_Position = myPMVMatrix * myVertex;
|
|
color = myColor;
|
|
}
|
|
|