Fix issue with separable shader validation in iomapper
This commit is contained in:
parent
b9ba4c5743
commit
cbab732905
15 changed files with 1350 additions and 2 deletions
11
Test/iomap.variableOutBlockIn.vert
Normal file
11
Test/iomap.variableOutBlockIn.vert
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#version 440
|
||||
|
||||
layout(location = 0) out vec4 a1;
|
||||
layout(location = 1) out vec2 a2;
|
||||
|
||||
void main()
|
||||
{
|
||||
a1 = vec4(1.0);
|
||||
a2 = vec2(0.5);
|
||||
gl_Position = vec4(1.0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue