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 --- .../functional/gles3/vertexarrays/00_test_list.txt | 27 +++++ .../vertexarrays/multiple_attributes.count.html | 31 ++++++ .../vertexarrays/multiple_attributes.output.html | 31 ++++++ .../vertexarrays/multiple_attributes.storage.html | 31 ++++++ .../vertexarrays/multiple_attributes.stride.html | 31 ++++++ .../gles3/vertexarrays/single_attribute.first.html | 31 ++++++ .../vertexarrays/single_attribute.normalize.html | 31 ++++++ .../vertexarrays/single_attribute.offset.html | 31 ++++++ .../single_attribute.output_type.byte.html | 31 ++++++ .../single_attribute.output_type.float.html | 31 ++++++ .../single_attribute.output_type.half.html | 31 ++++++ .../single_attribute.output_type.int.html | 31 ++++++ ...ingle_attribute.output_type.int_2_10_10_10.html | 31 ++++++ .../single_attribute.output_type.short.html | 31 ++++++ ...single_attribute.output_type.unsigned_byte.html | 31 ++++++ .../single_attribute.output_type.unsigned_int.html | 31 ++++++ ...ribute.output_type.unsigned_int_2_10_10_10.html | 31 ++++++ ...ingle_attribute.output_type.unsigned_short.html | 31 ++++++ .../vertexarrays/single_attribute.stride.html | 31 ++++++ .../single_attribute.usage.dynamic_copy.html | 31 ++++++ .../single_attribute.usage.dynamic_draw.html | 31 ++++++ .../single_attribute.usage.dynamic_read.html | 31 ++++++ .../single_attribute.usage.static_copy.html | 31 ++++++ .../single_attribute.usage.static_draw.html | 31 ++++++ .../single_attribute.usage.static_read.html | 31 ++++++ .../single_attribute.usage.stream_copy.html | 31 ++++++ .../single_attribute.usage.stream_draw.html | 31 ++++++ .../single_attribute.usage.stream_read.html | 31 ++++++ .../vertexarrays/vertexarrays_test_generator.py | 110 +++++++++++++++++++++ 29 files changed, 974 insertions(+) create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/00_test_list.txt create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.count.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.output.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.first.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.normalize.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.offset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.stride.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/vertexarrays_test_generator.py (limited to 'dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays') diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/00_test_list.txt b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/00_test_list.txt new file mode 100644 index 0000000000..f06de02f82 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/00_test_list.txt @@ -0,0 +1,27 @@ +single_attribute.stride.html +single_attribute.normalize.html +single_attribute.output_type.float.html +single_attribute.output_type.short.html +single_attribute.output_type.byte.html +single_attribute.output_type.unsigned_short.html +single_attribute.output_type.unsigned_byte.html +single_attribute.output_type.unsigned_int.html +single_attribute.output_type.int.html +single_attribute.output_type.half.html +single_attribute.output_type.unsigned_int_2_10_10_10.html +single_attribute.output_type.int_2_10_10_10.html +single_attribute.usage.static_draw.html +single_attribute.usage.stream_draw.html +single_attribute.usage.dynamic_draw.html +single_attribute.usage.static_copy.html +single_attribute.usage.stream_copy.html +single_attribute.usage.dynamic_copy.html +single_attribute.usage.static_read.html +single_attribute.usage.stream_read.html +single_attribute.usage.dynamic_read.html +single_attribute.offset.html +single_attribute.first.html +multiple_attributes.count.html +multiple_attributes.storage.html +multiple_attributes.stride.html +multiple_attributes.output.html \ No newline at end of file diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.count.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.count.html new file mode 100644 index 0000000000..be380c95ee --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.count.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.output.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.output.html new file mode 100644 index 0000000000..37ff4a8420 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.output.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html new file mode 100644 index 0000000000..2dda458009 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.storage.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html new file mode 100644 index 0000000000..8913a2d93f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/multiple_attributes.stride.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.first.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.first.html new file mode 100644 index 0000000000..dd2b1a23b7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.first.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.normalize.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.normalize.html new file mode 100644 index 0000000000..c92890a97c --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.normalize.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.offset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.offset.html new file mode 100644 index 0000000000..6b9286c1ab --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.offset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html new file mode 100644 index 0000000000..0babde2587 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.byte.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html new file mode 100644 index 0000000000..a4cd67561b --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.float.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html new file mode 100644 index 0000000000..95740244a7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.half.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html new file mode 100644 index 0000000000..ec3f4903c1 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html new file mode 100644 index 0000000000..95eff6d999 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.int_2_10_10_10.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html new file mode 100644 index 0000000000..ff6cbffa9f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.short.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html new file mode 100644 index 0000000000..1ef3deb9d5 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_byte.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html new file mode 100644 index 0000000000..efff6a628e --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html new file mode 100644 index 0000000000..9b90ae1ed7 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_int_2_10_10_10.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html new file mode 100644 index 0000000000..bf56c355ac --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.output_type.unsigned_short.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.stride.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.stride.html new file mode 100644 index 0000000000..46bd9e2036 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.stride.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html new file mode 100644 index 0000000000..347834c74c --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_copy.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html new file mode 100644 index 0000000000..dab5982daf --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_draw.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html new file mode 100644 index 0000000000..8d868ce6a1 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.dynamic_read.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html new file mode 100644 index 0000000000..0c1c286164 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_copy.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html new file mode 100644 index 0000000000..eb3bb61265 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_draw.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html new file mode 100644 index 0000000000..bfed3a9bfa --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.static_read.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html new file mode 100644 index 0000000000..f7c63d107f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_copy.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html new file mode 100644 index 0000000000..238ce5e14e --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_draw.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html new file mode 100644 index 0000000000..6dd2a736c6 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/single_attribute.usage.stream_read.html @@ -0,0 +1,31 @@ + + + + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/vertexarrays_test_generator.py b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/vertexarrays_test_generator.py new file mode 100644 index 0000000000..de781ccafc --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/vertexarrays/vertexarrays_test_generator.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python + +# Copyright (c) 2019 The Khronos Group Inc. +# Use of this source code is governed by an MIT-style license that can be +# found in the LICENSE.txt file. + +""" + Generator for vertexarrays* tests. + This file needs to be run in its folder. +""" + +import sys + +_DO_NOT_EDIT_WARNING = """ + +""" + +_HTML_TEMPLATE = """ + + +WebGL Vertex Arrays Conformance Tests + + + + + + + + + +
+
+ + + + +""" + +_GROUPS = [ + 'single_attribute.stride', + 'single_attribute.normalize', + 'single_attribute.output_type.float', + 'single_attribute.output_type.short', + 'single_attribute.output_type.byte', + 'single_attribute.output_type.unsigned_short', + 'single_attribute.output_type.unsigned_byte', + 'single_attribute.output_type.unsigned_int', + 'single_attribute.output_type.int', + 'single_attribute.output_type.half', + 'single_attribute.output_type.unsigned_int_2_10_10_10', + 'single_attribute.output_type.int_2_10_10_10', + 'single_attribute.usage.static_draw', + 'single_attribute.usage.stream_draw', + 'single_attribute.usage.dynamic_draw', + 'single_attribute.usage.static_copy', + 'single_attribute.usage.stream_copy', + 'single_attribute.usage.dynamic_copy', + 'single_attribute.usage.static_read', + 'single_attribute.usage.stream_read', + 'single_attribute.usage.dynamic_read', + 'single_attribute.offset', + 'single_attribute.first', + 'multiple_attributes.count', + 'multiple_attributes.storage', + 'multiple_attributes.stride', + 'multiple_attributes.output', +] + +def WriteTest(filename, start, end): + """Write one test.""" + file = open(filename, "wb") + file.write(_DO_NOT_EDIT_WARNING) + file.write(_HTML_TEMPLATE % { + 'start': start, + 'end': end + }) + file.close + +def GenerateTests(): + """Generate all tests.""" + filelist = [] + ii = 0 + for ii in range(len(_GROUPS)): + filename = _GROUPS[ii] + ".html" + filelist.append(filename) + WriteTest(filename, ii, ii + 1) + return filelist + +def GenerateTestList(filelist): + file = open("00_test_list.txt", "wb") + file.write('\n'.join(filelist)) + file.close + +def main(argv): + """This is the main function.""" + filelist = GenerateTests() + GenerateTestList(filelist) + +if __name__ == '__main__': + sys.exit(main(sys.argv[1:])) -- cgit v1.2.3