summaryrefslogtreecommitdiff
path: root/tests/bugs/vk-structured-buffer-binding.hlsl.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/vk-structured-buffer-binding.hlsl.glsl')
-rw-r--r--tests/bugs/vk-structured-buffer-binding.hlsl.glsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/bugs/vk-structured-buffer-binding.hlsl.glsl b/tests/bugs/vk-structured-buffer-binding.hlsl.glsl
index f108aac00..18ed1a8a7 100644
--- a/tests/bugs/vk-structured-buffer-binding.hlsl.glsl
+++ b/tests/bugs/vk-structured-buffer-binding.hlsl.glsl
@@ -10,14 +10,14 @@ layout(std430, binding = 3, set = 4) buffer StructuredBuffer_uint_t_0 {
} gDoneGroups_0;
layout(location = 0)
-out vec4 _S1;
+out vec4 main_0;
layout(location = 0)
-in vec3 _S2;
+in vec3 uv_0;
void main()
{
- _S1 = vec4(float(gDoneGroups_0._data[uint(int(_S2.z))]));
+ main_0 = vec4(float(gDoneGroups_0._data[uint(int(uv_0.z))]));
return;
}