Fix issue with separable shader validation in iomapper
This commit is contained in:
11
Test/iomap.blockOutVariableIn.frag
Normal file
11
Test/iomap.blockOutVariableIn.frag
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 440
|
||||
|
||||
layout(location = 0) in vec4 a1;
|
||||
layout(location = 1) in vec2 a2;
|
||||
|
||||
layout(location = 0) out vec4 color;
|
||||
|
||||
void main()
|
||||
{
|
||||
color = vec4(a1.xy, a2);
|
||||
}
|
||||
Reference in New Issue
Block a user