summaryrefslogtreecommitdiffstats
path: root/tests/reflection
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reflection')
-rw-r--r--tests/reflection/sample-rate-input.glsl15
-rw-r--r--tests/reflection/sample-rate-input.glsl.expected57
-rw-r--r--tests/reflection/thread-group-size.comp18
-rw-r--r--tests/reflection/thread-group-size.comp.expected39
4 files changed, 0 insertions, 129 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);
-}
diff --git a/tests/reflection/sample-rate-input.glsl.expected b/tests/reflection/sample-rate-input.glsl.expected
deleted file mode 100644
index 53e0b6e17..000000000
--- a/tests/reflection/sample-rate-input.glsl.expected
+++ /dev/null
@@ -1,57 +0,0 @@
-result code = 0
-standard error = {
-}
-standard output = {
-{
- "parameters": [
- {
- "name": "t",
- "binding": {"kind": "descriptorTableSlot", "index": 0},
- "type": {
- "kind": "resource",
- "baseShape": "texture2D"
- }
- },
- {
- "name": "s",
- "binding": {"kind": "descriptorTableSlot", "index": 1},
- "type": {
- "kind": "samplerState"
- }
- },
- {
- "name": "uv",
- "stage": "fragment",
- "binding": {"kind": "varyingInput", "index": 0},
- "type": {
- "kind": "vector",
- "elementCount": 2,
- "elementType": {
- "kind": "scalar",
- "scalarType": "float32"
- }
- }
- },
- {
- "name": "c",
- "stage": "fragment",
- "binding": {"kind": "varyingOutput", "index": 0},
- "type": {
- "kind": "vector",
- "elementCount": 4,
- "elementType": {
- "kind": "scalar",
- "scalarType": "float32"
- }
- }
- }
- ],
- "entryPoints": [
- {
- "name": "main",
- "stage:": "fragment",
- "usesAnySampleRateInput": true
- }
- ]
-}
-}
diff --git a/tests/reflection/thread-group-size.comp b/tests/reflection/thread-group-size.comp
deleted file mode 100644
index ff29490a5..000000000
--- a/tests/reflection/thread-group-size.comp
+++ /dev/null
@@ -1,18 +0,0 @@
-//TEST:REFLECTION:-no-checking -target glsl
-
-// Confirm that we provide reflection data for the `local_size_*` attributes
-
-layout(local_size_x = 3) in;
-
-layout(local_size_y = 5, local_size_z = 7) in;
-
-buffer B
-{
- float b[];
-};
-
-void main()
-{
- uint tid = gl_GlobalInvocationID.x;
- b[tid] = b[tid + 1] + 1.0f;
-} \ No newline at end of file
diff --git a/tests/reflection/thread-group-size.comp.expected b/tests/reflection/thread-group-size.comp.expected
deleted file mode 100644
index facd52cc0..000000000
--- a/tests/reflection/thread-group-size.comp.expected
+++ /dev/null
@@ -1,39 +0,0 @@
-result code = 0
-standard error = {
-}
-standard output = {
-{
- "parameters": [
- {
- "name": "B",
- "binding": {"kind": "descriptorTableSlot", "index": 0},
- "type": {
- "kind": "shaderStorageBuffer",
- "elementType": {
- "kind": "struct",
- "fields": [
- {
- "name": "b",
- "type": {
- "kind": "array",
- "elementCount": 0,
- "elementType": {
- "kind": "scalar",
- "scalarType": "float32"
- }
- }
- }
- ]
- }
- }
- }
- ],
- "entryPoints": [
- {
- "name": "main",
- "stage:": "compute",
- "threadGroupSize": [3, 5, 7]
- }
- ]
-}
-}