Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <hans-kristian.arntzen@arm.com>2018-09-27 12:10:22 +0300
committerHans-Kristian Arntzen <hans-kristian.arntzen@arm.com>2018-09-27 12:10:22 +0300
commitaf75ef005ffb27f7641a556f2627b973c0995737 (patch)
tree2f46c4a6f85a8aefd935c5a335b3c3843b0a3343 /reference/opt/shaders/amd
parent69b034f26e28a76a6f4e5d9521123072b24d7ea2 (diff)
Update glslang and SPIRV-Tools.
A lot of changes in spirv-opt output. Some new invalid SPIR-V was found but most of them were not significant for SPIRV-Cross, so just marked them as invalid.
Diffstat (limited to 'reference/opt/shaders/amd')
-rw-r--r--reference/opt/shaders/amd/shader_ballot.comp6
1 files changed, 3 insertions, 3 deletions
diff --git a/reference/opt/shaders/amd/shader_ballot.comp b/reference/opt/shaders/amd/shader_ballot.comp
index 6c14bba4..cc54a244 100644
--- a/reference/opt/shaders/amd/shader_ballot.comp
+++ b/reference/opt/shaders/amd/shader_ballot.comp
@@ -9,9 +9,9 @@ layout(binding = 0, std430) buffer inputData
float inputDataArray[];
} _12;
-layout(binding = 1, std430) buffer _10_74
+layout(binding = 1, std430) buffer outputData
{
- float inputDataArray[];
+ float outputDataArray[];
} _74;
void main()
@@ -22,7 +22,7 @@ void main()
uint _44 = mbcntAMD(packUint2x32(uvec2(_37.xy)));
if (_31)
{
- _74.inputDataArray[_44] = _25;
+ _74.outputDataArray[_44] = _25;
}
}