mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
15 lines
277 B
Plaintext
15 lines
277 B
Plaintext
|
#version 430 core
|
||
|
#extension GL_ARB_enhanced_layouts : require
|
||
|
|
||
|
layout(vertices = 1) out;
|
||
|
|
||
|
layout (location = 1, component = 0) in double gohan[];
|
||
|
layout (location = 1, component = 2) in float goten[];
|
||
|
|
||
|
|
||
|
in vec4 vs_tcs[];
|
||
|
out vec4 tcs_tes[];
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
}
|