mirror of https://github.com/qt/qt3d.git
10 lines
129 B
GLSL
10 lines
129 B
GLSL
|
#version 150
|
||
|
|
||
|
in vec4 vertexPosition;
|
||
|
uniform mat4 modelMatrix;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = modelMatrix * vertexPosition;
|
||
|
}
|