mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-16 00:40:08 +00:00
e67f6f85a4
Previously, we would generate parentheses proactively when generating binary ops, however, this leads to uglier code and hits warnings in compilers when used as a conditional.
15 lines
480 B
GLSL
15 lines
480 B
GLSL
#version 450
|
|
|
|
layout(binding = 0) uniform sampler2DMS uSampler;
|
|
layout(binding = 1) uniform sampler2DMSArray uSamplerArray;
|
|
layout(binding = 2, rgba8) uniform readonly writeonly image2DMS uImage;
|
|
layout(binding = 3, rgba8) uniform readonly writeonly image2DMSArray uImageArray;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(float(((textureSamples(uSampler) + textureSamples(uSamplerArray)) + imageSamples(uImage)) + imageSamples(uImageArray)));
|
|
}
|
|
|