summaryrefslogtreecommitdiff
path: root/tests/bugs/texture2d-gather.hlsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/texture2d-gather.hlsl')
-rw-r--r--tests/bugs/texture2d-gather.hlsl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/bugs/texture2d-gather.hlsl b/tests/bugs/texture2d-gather.hlsl
index 9b0607eae..7344d863d 100644
--- a/tests/bugs/texture2d-gather.hlsl
+++ b/tests/bugs/texture2d-gather.hlsl
@@ -3,8 +3,9 @@
//TEST_INPUT: Texture2D(size=16, content=chessboard, format=R32_FLOAT):name g_texture
//TEST_INPUT: Sampler :name g_sampler
-Texture2D<float> g_texture : register(t0);
-SamplerState g_sampler : register(s0);
+Texture2D<float> g_texture;
+
+SamplerState g_sampler;
cbuffer Uniforms
{