mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 11:32:42 +01:00
11 lines
249 B
GLSL
11 lines
249 B
GLSL
|
attribute vec4 qt_Vertex;
|
||
|
attribute vec4 qt_MultiTexCoord0;
|
||
|
uniform mat4 qt_ModelViewProjectionMatrix;
|
||
|
varying vec4 qt_TexCoord0;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
gl_Position = qt_ModelViewProjectionMatrix * qt_Vertex;
|
||
|
qt_TexCoord0 = qt_MultiTexCoord0;
|
||
|
}
|