You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
282 B
16 lines
282 B
4 months ago
|
#version 450
|
||
|
#extension GL_EXT_nonuniform_qualifier : require
|
||
|
|
||
|
layout(location = 0) flat in int Index;
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
|
||
|
layout(set = 0, binding = 0) uniform UBO
|
||
|
{
|
||
|
vec4 v;
|
||
|
} ubos[];
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = ubos[nonuniformEXT(Index)].v;
|
||
|
}
|