summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.while-continue-break.vert
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/spv.while-continue-break.vert')
-rw-r--r--chromium/third_party/glslang/src/Test/spv.while-continue-break.vert20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/spv.while-continue-break.vert b/chromium/third_party/glslang/src/Test/spv.while-continue-break.vert
new file mode 100644
index 00000000000..c81e8d28c23
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/spv.while-continue-break.vert
@@ -0,0 +1,20 @@
+#version 310 es
+void main() {
+ int i = 0;
+ int A, B, C, D;
+ while (i<10) {
+ A = 1;
+ if (i%2 == 0) {
+ B = 2;
+ continue;
+ C = 2;
+ }
+ if (i%5 == 0) {
+ B = 2;
+ break;
+ C = 2;
+ }
+ i++;
+ }
+ D = 3;
+}