mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
11 lines
261 B
GLSL
11 lines
261 B
GLSL
|
#version 460 core
|
||
|
#extension GL_EXT_spirv_intrinsics : enable
|
||
|
|
||
|
// ERROR: Overlapped input location. Make sure it could be detected even
|
||
|
// if GL_EXT_spirv_intrinsics is enabled.
|
||
|
layout(location = 0) in vec4 v4;
|
||
|
layout(location = 0) in vec3 v3;
|
||
|
|
||
|
void main() {
|
||
|
}
|