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 --- .../gles3/shadertexturefunction/00_test_list.txt | 15 +++ .../shadertexturefunction_test_generator.py | 103 +++++++++++++++++++++ .../gles3/shadertexturefunction/texelfetch.html | 31 +++++++ .../shadertexturefunction/texelfetchoffset.html | 31 +++++++ .../gles3/shadertexturefunction/texture.html | 31 +++++++ .../gles3/shadertexturefunction/texturegrad.html | 31 +++++++ .../shadertexturefunction/texturegradoffset.html | 31 +++++++ .../gles3/shadertexturefunction/texturelod.html | 31 +++++++ .../shadertexturefunction/texturelodoffset.html | 31 +++++++ .../gles3/shadertexturefunction/textureoffset.html | 31 +++++++ .../gles3/shadertexturefunction/textureproj.html | 31 +++++++ .../shadertexturefunction/textureprojgrad.html | 31 +++++++ .../textureprojgradoffset.html | 31 +++++++ .../shadertexturefunction/textureprojlod.html | 31 +++++++ .../textureprojlodoffset.html | 31 +++++++ .../shadertexturefunction/textureprojoffset.html | 31 +++++++ .../gles3/shadertexturefunction/texturesize.html | 31 +++++++ 17 files changed, 583 insertions(+) create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/00_test_list.txt create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/shadertexturefunction_test_generator.py create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetch.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texture.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegrad.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegradoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelod.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelodoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureproj.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgrad.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlod.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojoffset.html create mode 100644 dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturesize.html (limited to 'dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction') diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/00_test_list.txt b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/00_test_list.txt new file mode 100644 index 0000000000..13a12534db --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/00_test_list.txt @@ -0,0 +1,15 @@ +texture.html +textureoffset.html +textureproj.html +textureprojoffset.html +texturelod.html +texturelodoffset.html +textureprojlod.html +textureprojlodoffset.html +texturegrad.html +texturegradoffset.html +textureprojgrad.html +textureprojgradoffset.html +texelfetch.html +texelfetchoffset.html +texturesize.html \ No newline at end of file diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/shadertexturefunction_test_generator.py b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/shadertexturefunction_test_generator.py new file mode 100644 index 0000000000..3b63359d7f --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/shadertexturefunction_test_generator.py @@ -0,0 +1,103 @@ +#!/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 shadertexturefunction* tests. + This file needs to be run in its folder. +""" + +import sys + +_DO_NOT_EDIT_WARNING = """ + +""" + +_HTML_TEMPLATE = """ + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + +""" + +_GROUPS = [ + 'texture', + 'textureoffset', + 'textureproj', + 'textureprojoffset', + 'texturelod', + 'texturelodoffset', + 'textureprojlod', + 'textureprojlodoffset', + 'texturegrad', + 'texturegradoffset', + 'textureprojgrad', + 'textureprojgradoffset', + 'texelfetch', + 'texelfetchoffset', + 'texturesize' +] + +def GenerateFilename(group): + """Generate test filename.""" + filename = group + filename += ".html" + return filename + +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 = [] + for ii in range(len(_GROUPS)): + filename = GenerateFilename(_GROUPS[ii]) + 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:])) diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetch.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetch.html new file mode 100644 index 0000000000..6787012d51 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetch.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html new file mode 100644 index 0000000000..1d2e0de506 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texelfetchoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texture.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texture.html new file mode 100644 index 0000000000..f5668b4d9d --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texture.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegrad.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegrad.html new file mode 100644 index 0000000000..7ef3d92104 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegrad.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegradoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegradoffset.html new file mode 100644 index 0000000000..c016084bf9 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturegradoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelod.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelod.html new file mode 100644 index 0000000000..928bade495 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelod.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelodoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelodoffset.html new file mode 100644 index 0000000000..23792c3d83 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturelodoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureoffset.html new file mode 100644 index 0000000000..61b9c6affa --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureproj.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureproj.html new file mode 100644 index 0000000000..676c7cde0c --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureproj.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgrad.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgrad.html new file mode 100644 index 0000000000..c68978abbb --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgrad.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html new file mode 100644 index 0000000000..d2165e4f87 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojgradoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlod.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlod.html new file mode 100644 index 0000000000..fe0fc76b2a --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlod.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html new file mode 100644 index 0000000000..a8d9760ab8 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojlodoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojoffset.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojoffset.html new file mode 100644 index 0000000000..3b383a72da --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/textureprojoffset.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + diff --git a/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturesize.html b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturesize.html new file mode 100644 index 0000000000..245a285b51 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/deqp/functional/gles3/shadertexturefunction/texturesize.html @@ -0,0 +1,31 @@ + + + + + +WebGL Shader Texture Function Conformance Tests + + + + + + + + + +
+
+ + + + -- cgit v1.2.3