mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 04:20:06 +00:00
11 lines
140 B
GLSL
11 lines
140 B
GLSL
|
#version 450 core
|
||
|
#pragma STDGL invariant(all)
|
||
|
|
||
|
layout(location=0) out highp float v;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(v, v, 0, 1);
|
||
|
}
|
||
|
|