From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../checkout/conformance/uniforms/00_test_list.txt | 31 + .../gl-get-uniform-non-current-program.html | 79 +++ .../conformance/uniforms/gl-uniform-arrays.html | 738 +++++++++++++++++++++ .../conformance/uniforms/gl-uniform-bool.html | 59 ++ .../uniforms/gl-uniform-struct-unused.html | 83 +++ ...niform-unused-array-elements-get-truncated.html | 114 ++++ .../conformance/uniforms/gl-uniformmatrix4fv.html | 149 +++++ .../conformance/uniforms/gl-unknown-uniform.html | 67 ++ .../no-over-optimization-on-uniform-array-00.html | 39 ++ .../no-over-optimization-on-uniform-array-01.html | 39 ++ .../no-over-optimization-on-uniform-array-02.html | 39 ++ .../no-over-optimization-on-uniform-array-03.html | 39 ++ .../no-over-optimization-on-uniform-array-04.html | 39 ++ .../no-over-optimization-on-uniform-array-05.html | 39 ++ .../no-over-optimization-on-uniform-array-06.html | 39 ++ .../no-over-optimization-on-uniform-array-07.html | 39 ++ .../no-over-optimization-on-uniform-array-08.html | 39 ++ .../no-over-optimization-on-uniform-array-09.html | 39 ++ .../no-over-optimization-on-uniform-array-10.html | 39 ++ .../no-over-optimization-on-uniform-array-11.html | 39 ++ .../no-over-optimization-on-uniform-array-12.html | 39 ++ .../no-over-optimization-on-uniform-array-13.html | 39 ++ .../no-over-optimization-on-uniform-array-14.html | 39 ++ .../no-over-optimization-on-uniform-array-15.html | 39 ++ .../no-over-optimization-on-uniform-array-16.html | 39 ++ .../no-over-optimization-on-uniform-array-17.html | 39 ++ .../uniforms/null-uniform-location.html | 81 +++ .../out-of-bounds-uniform-array-access.html | 168 +++++ .../uniforms/uniform-default-values.html | 339 ++++++++++ .../conformance/uniforms/uniform-location.html | 96 +++ .../uniforms/uniform-samplers-test.html | 111 ++++ .../uniforms/uniform-values-per-program.html | 179 +++++ 32 files changed, 2996 insertions(+) create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/00_test_list.txt create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-get-uniform-non-current-program.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-arrays.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-bool.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-struct-unused.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-unused-array-elements-get-truncated.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniformmatrix4fv.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-unknown-uniform.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-00.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-01.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-02.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-03.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-04.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-05.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-06.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-07.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-08.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-09.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-10.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-11.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-12.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-13.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-14.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-15.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-16.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-17.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/null-uniform-location.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/out-of-bounds-uniform-array-access.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-default-values.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-location.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-samplers-test.html create mode 100644 dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-values-per-program.html (limited to 'dom/canvas/test/webgl-conf/checkout/conformance/uniforms') diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/00_test_list.txt b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/00_test_list.txt new file mode 100644 index 0000000000..2da0fc47a3 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/00_test_list.txt @@ -0,0 +1,31 @@ +gl-uniform-arrays.html +# This test is no longer valid with the new packing restrictions +#--min-version 1.0.02 gl-uniform-unused-array-elements-get-truncated.html +gl-uniform-bool.html +--min-version 1.0.4 gl-get-uniform-non-current-program.html +gl-uniformmatrix4fv.html +gl-unknown-uniform.html +no-over-optimization-on-uniform-array-00.html +no-over-optimization-on-uniform-array-01.html +no-over-optimization-on-uniform-array-02.html +no-over-optimization-on-uniform-array-03.html +no-over-optimization-on-uniform-array-04.html +no-over-optimization-on-uniform-array-05.html +no-over-optimization-on-uniform-array-06.html +no-over-optimization-on-uniform-array-07.html +no-over-optimization-on-uniform-array-08.html +no-over-optimization-on-uniform-array-09.html +no-over-optimization-on-uniform-array-10.html +no-over-optimization-on-uniform-array-11.html +no-over-optimization-on-uniform-array-12.html +no-over-optimization-on-uniform-array-13.html +no-over-optimization-on-uniform-array-14.html +no-over-optimization-on-uniform-array-15.html +no-over-optimization-on-uniform-array-16.html +no-over-optimization-on-uniform-array-17.html +null-uniform-location.html +--min-version 1.0.2 out-of-bounds-uniform-array-access.html +--min-version 1.0.2 uniform-default-values.html +--min-version 1.0.3 uniform-values-per-program.html +uniform-location.html +uniform-samplers-test.html diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-get-uniform-non-current-program.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-get-uniform-non-current-program.html new file mode 100644 index 0000000000..f6628748f0 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-get-uniform-non-current-program.html @@ -0,0 +1,79 @@ + + + + + + +WebGL getUniform from non-current program + + + + + +
+
+ + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-arrays.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-arrays.html new file mode 100644 index 0000000000..7ffde96d84 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-arrays.html @@ -0,0 +1,738 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + +
+
+ + + + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-bool.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-bool.html new file mode 100644 index 0000000000..4f23cb4cf4 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-bool.html @@ -0,0 +1,59 @@ + + + + + + +WebGL uniformMatrix Conformance Tests + + + + + +
+
+ + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-struct-unused.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-struct-unused.html new file mode 100644 index 0000000000..b755e59ee2 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-struct-unused.html @@ -0,0 +1,83 @@ + + + + + + +WebGL uniform struct Conformance Test + + + + + +
+
+ + + + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-unused-array-elements-get-truncated.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-unused-array-elements-get-truncated.html new file mode 100644 index 0000000000..f8322cca01 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniform-unused-array-elements-get-truncated.html @@ -0,0 +1,114 @@ + + + + + + +WebGL uniform unused array elements get truncated Conformance Test + + + + + +
+
+ + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniformmatrix4fv.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniformmatrix4fv.html new file mode 100644 index 0000000000..eb4977a6fd --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-uniformmatrix4fv.html @@ -0,0 +1,149 @@ + + + + + + +WebGL uniformMatrix Conformance Tests + + + + + +
+
+ + + + + + + + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-unknown-uniform.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-unknown-uniform.html new file mode 100644 index 0000000000..825fd23831 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/gl-unknown-uniform.html @@ -0,0 +1,67 @@ + + + + + + +WebGL Unknown Uniform Conformance Test + + + + + +
+
+ + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-00.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-00.html new file mode 100644 index 0000000000..d331fa9299 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-00.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-01.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-01.html new file mode 100644 index 0000000000..a60c1af473 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-01.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-02.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-02.html new file mode 100644 index 0000000000..670d553802 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-02.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-03.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-03.html new file mode 100644 index 0000000000..5702b78033 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-03.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-04.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-04.html new file mode 100644 index 0000000000..b46e8915e1 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-04.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-05.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-05.html new file mode 100644 index 0000000000..43caca6c9f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-05.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-06.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-06.html new file mode 100644 index 0000000000..e18b69ea5e --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-06.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-07.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-07.html new file mode 100644 index 0000000000..365890dc90 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-07.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-08.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-08.html new file mode 100644 index 0000000000..442cea6bed --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-08.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-09.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-09.html new file mode 100644 index 0000000000..4543434e77 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-09.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-10.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-10.html new file mode 100644 index 0000000000..dd4827f5f9 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-10.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-11.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-11.html new file mode 100644 index 0000000000..93b34b906b --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-11.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-12.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-12.html new file mode 100644 index 0000000000..e802600741 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-12.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-13.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-13.html new file mode 100644 index 0000000000..0606ef5a28 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-13.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-14.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-14.html new file mode 100644 index 0000000000..7e33adce4f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-14.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-15.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-15.html new file mode 100644 index 0000000000..46b50679b7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-15.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-16.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-16.html new file mode 100644 index 0000000000..881b76b560 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-16.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-17.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-17.html new file mode 100644 index 0000000000..9dcb8ae9b8 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/no-over-optimization-on-uniform-array-17.html @@ -0,0 +1,39 @@ + + + + + + +WebGL uniform array Conformance Tests + + + + + + +
+
+ + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/null-uniform-location.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/null-uniform-location.html new file mode 100644 index 0000000000..0c49bdb2f0 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/null-uniform-location.html @@ -0,0 +1,81 @@ + + + + + + + + + + + +
+
+ + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/out-of-bounds-uniform-array-access.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/out-of-bounds-uniform-array-access.html new file mode 100644 index 0000000000..1defc8ee0e --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/out-of-bounds-uniform-array-access.html @@ -0,0 +1,168 @@ + + + + + + +WebGL out of bounds uniform array access. + + + + + +
+ + +
+ + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-default-values.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-default-values.html new file mode 100644 index 0000000000..862182c272 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-default-values.html @@ -0,0 +1,339 @@ + + + + + + +WebGL uniform default values + + + + + + +
+
+ + + + + + + + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-location.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-location.html new file mode 100644 index 0000000000..3b1c185caf --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-location.html @@ -0,0 +1,96 @@ + + + + + + + + + + +
+
+ + + + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-samplers-test.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-samplers-test.html new file mode 100644 index 0000000000..fc680c0eaa --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-samplers-test.html @@ -0,0 +1,111 @@ + + + + + + +WebGL sampler uniforms conformance test. + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-values-per-program.html b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-values-per-program.html new file mode 100644 index 0000000000..6ff693f347 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance/uniforms/uniform-values-per-program.html @@ -0,0 +1,179 @@ + + + + + + +WebGL uniform values are per program conformance test. + + + + + + + + + + +
+
+ + + + + -- cgit v1.2.3