summaryrefslogtreecommitdiff
path: root/tests/reflection/sample-rate-input.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reflection/sample-rate-input.glsl')
-rw-r--r--tests/reflection/sample-rate-input.glsl15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/reflection/sample-rate-input.glsl b/tests/reflection/sample-rate-input.glsl
deleted file mode 100644
index b8151aee1..000000000
--- a/tests/reflection/sample-rate-input.glsl
+++ /dev/null
@@ -1,15 +0,0 @@
-//TEST(smoke):REFLECTION:-profile ps_4_0 -no-checking
-
-// Check that we report sample-rate entry point input correctly
-
-uniform texture2D t;
-uniform sampler s;
-
-sample in vec2 uv;
-
-out vec4 c;
-
-void main()
-{
- c = texture(sampler2D(t,s), uv);
-}