RetroArch/reference/shaders/desktop-only/frag/in-block-qualifiers.frag
Brad Parker 9ae6075535 Squashed 'deps/SPIRV-Cross/' content from commit 9ccd1ae
git-subtree-dir: deps/SPIRV-Cross
git-subtree-split: 9ccd1aea4201ff5d79c09808567348d0d3ab0452
2016-12-20 13:17:07 -05:00

22 lines
529 B
GLSL

#version 450
layout(location = 0) out vec4 FragColor;
in VertexData
{
layout(location = 0) flat float f;
layout(location = 1) centroid vec4 g;
layout(location = 2) flat int h;
layout(location = 3) float i;
} vin;
layout(location = 4) in flat float f;
layout(location = 5) in centroid vec4 g;
layout(location = 6) in flat int h;
layout(location = 7) in sample float i;
void main()
{
FragColor = ((((((vec4(vin.f) + vin.g) + vec4(float(vin.h))) + vec4(vin.i)) + vec4(f)) + g) + vec4(float(h))) + vec4(i);
}