summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test')
-rw-r--r--dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test100
1 files changed, 100 insertions, 0 deletions
diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test b/dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test
new file mode 100644
index 0000000000..c7b86eded4
--- /dev/null
+++ b/dom/canvas/test/webgl-conf/checkout/deqp/data/gles3/shaders/negative.test
@@ -0,0 +1,100 @@
+# Generic invalid cases that don't fall into other categories
+
+group c_cast "C-style casts"
+
+ case float_0
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ precision highp float;
+ ${DECLARATIONS}
+ void main ()
+ {
+ float a = 0.0;
+ float b = (float)a;
+ ${POSITION_FRAG_COLOR} = vec4(0.0);
+ }
+ ""
+ end
+
+ case float_1
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ precision highp float;
+ ${DECLARATIONS}
+ void main ()
+ {
+ int a = 0;
+ float b = (float)a;
+ ${POSITION_FRAG_COLOR} = vec4(b);
+ }
+ ""
+ end
+
+ case float_2
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ ${DECLARATIONS}
+ void main ()
+ {
+ highp float a = 0.0;
+ mediump float b = (mediump float)a;
+ ${POSITION_FRAG_COLOR} = vec4(0.0);
+ }
+ ""
+ end
+
+ case int
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ precision highp float;
+ ${DECLARATIONS}
+ void main ()
+ {
+ float a = 0.0;
+ int b = (int)a;
+ ${POSITION_FRAG_COLOR} = vec4(0.0);
+ }
+ ""
+ end
+
+ case uint
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ precision highp float;
+ ${DECLARATIONS}
+ void main ()
+ {
+ float a = 0.0;
+ uint b = (uint)a;
+ ${POSITION_FRAG_COLOR} = vec4(0.0);
+ }
+ ""
+ end
+
+ case bool
+ expect compile_fail
+ version 300 es
+ both ""
+ #version 300 es
+ precision highp float;
+ ${DECLARATIONS}
+ void main ()
+ {
+ int a = 1;
+ bool b = (bool)a;
+ ${POSITION_FRAG_COLOR} = vec4(0.0);
+ }
+ ""
+ end
+
+end # casts