SPIRV-Cross/reference/shaders/vulkan/frag/nonuniform-qualifier.vk.nocompat.frag.vk
Chip Davis 343c6f4ff4 Update external repos.
Fix fallout from changes.

There's a bug in glslang that prevents `float16_t`, `[u]int16_t`, and
`[u]int8_t` constants from adding the corresponding SPIR-V capabilities.
SPIRV-Tools, meanwhile, tightened validation so that these constants are
only valid if the corresponding `Float16`, `Int16`, and `Int8` caps are
on. This affects the `16bit-constants.frag` test for GLSL and MSL.
2019-07-13 16:50:21 -05:00

38 lines
989 B
Plaintext

#version 450
#extension GL_EXT_nonuniform_qualifier : require
layout(set = 0, binding = 2, std140) uniform UBO
{
vec4 v[64];
} ubos[];
layout(set = 0, binding = 3, std430) readonly buffer SSBO
{
vec4 v[];
} ssbos[];
layout(set = 0, binding = 0) uniform texture2D uSamplers[];
layout(set = 0, binding = 1) uniform sampler uSamps[];
layout(set = 0, binding = 4) uniform sampler2D uCombinedSamplers[];
layout(location = 0) flat in int vIndex;
layout(location = 0) out vec4 FragColor;
layout(location = 1) in vec2 vUV;
void main()
{
int i = vIndex;
int _23 = i + 10;
int _34 = i + 40;
FragColor = texture(sampler2D(uSamplers[nonuniformEXT(_23)], uSamps[nonuniformEXT(_34)]), vUV);
int _50 = i + 10;
FragColor = texture(uCombinedSamplers[nonuniformEXT(_50)], vUV);
int _66 = i + 20;
int _70 = i + 40;
FragColor += ubos[nonuniformEXT(_66)].v[_70];
int _84 = i + 50;
int _88 = i + 60;
FragColor += ssbos[nonuniformEXT(_84)].v[_88];
}