mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
17 lines
254 B
Plaintext
17 lines
254 B
Plaintext
|
#version 450
|
||
|
#extension GL_NV_geometry_shader_passthrough : require
|
||
|
|
||
|
layout(triangles) in;
|
||
|
|
||
|
layout(passthrough) in gl_PerVertex {
|
||
|
vec4 gl_Position;
|
||
|
};
|
||
|
|
||
|
layout(passthrough) in Inputs {
|
||
|
vec2 texcoord;
|
||
|
vec4 baseColor;
|
||
|
};
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
}
|