aboutsummaryrefslogtreecommitdiff
path: root/Test/spv.1.6.helperInvocation.memmodel.frag
diff options
context:
space:
mode:
Diffstat (limited to 'Test/spv.1.6.helperInvocation.memmodel.frag')
-rw-r--r--Test/spv.1.6.helperInvocation.memmodel.frag16
1 files changed, 0 insertions, 16 deletions
diff --git a/Test/spv.1.6.helperInvocation.memmodel.frag b/Test/spv.1.6.helperInvocation.memmodel.frag
deleted file mode 100644
index b727f8e0..00000000
--- a/Test/spv.1.6.helperInvocation.memmodel.frag
+++ /dev/null
@@ -1,16 +0,0 @@
-#version 310 es
-
-#pragma use_vulkan_memory_model
-
-#extension GL_EXT_demote_to_helper_invocation : require
-
-precision highp float;
-
-layout (set=0, binding=0) buffer B {
- float o;
-};
-
-void main() {
- demote;
- o = gl_HelperInvocation ? 1.0 : 0.0;
-}