aboutsummaryrefslogtreecommitdiff
path: root/Test/spv.ARMCoreBuiltIns.vert
diff options
context:
space:
mode:
Diffstat (limited to 'Test/spv.ARMCoreBuiltIns.vert')
-rw-r--r--Test/spv.ARMCoreBuiltIns.vert12
1 files changed, 0 insertions, 12 deletions
diff --git a/Test/spv.ARMCoreBuiltIns.vert b/Test/spv.ARMCoreBuiltIns.vert
deleted file mode 100644
index 2bed18e8..00000000
--- a/Test/spv.ARMCoreBuiltIns.vert
+++ /dev/null
@@ -1,12 +0,0 @@
-#version 450
-#extension GL_ARM_shader_core_builtins: enable
-layout(set = 0, binding = 0, std430) buffer Output
-{
- uvec4 result;
-};
-
-void main (void)
-{
- uint temp = gl_WarpMaxIDARM;
- result = uvec4(gl_CoreIDARM, gl_CoreCountARM, gl_CoreMaxIDARM, gl_WarpIDARM + temp);
-}