First Commit
This commit is contained in:
17
externals/glslang/Test/spv.load.bool.array.interface.block.frag
vendored
Normal file
17
externals/glslang/Test/spv.load.bool.array.interface.block.frag
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
#version 450 core
|
||||
|
||||
layout(std140, set=0, binding=0) uniform ub {
|
||||
bool bi[2][3];
|
||||
};
|
||||
layout(std430, set=0, binding=1) buffer ssbo {
|
||||
bool bo[2][3];
|
||||
};
|
||||
|
||||
layout(location=0) out vec4 color;
|
||||
|
||||
void main()
|
||||
{
|
||||
bo = bi;
|
||||
color = vec4(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user