b2de7f8583
Task-number: QTBUG-78971 Change-Id: I0e7e0f3c00f9509031f7b4a8a389e51c915f01c2 Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
15 lines
232 B
GLSL
15 lines
232 B
GLSL
#version 440
|
|
|
|
layout(location = 0) in vec4 position;
|
|
layout(location = 1) in vec2 texcoord;
|
|
|
|
layout(location = 0) out vec2 uv;
|
|
|
|
out gl_PerVertex { vec4 gl_Position; };
|
|
|
|
void main()
|
|
{
|
|
uv = texcoord;
|
|
gl_Position = position;
|
|
}
|