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