diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas | |
parent | Initial commit. (diff) | |
download | firefox-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/conformance2/offscreencanvas')
11 files changed, 474 insertions, 0 deletions
diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/00_test_list.txt b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/00_test_list.txt new file mode 100644 index 0000000000..2aff6e699d --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/00_test_list.txt @@ -0,0 +1,8 @@ +context-creation.html +context-creation-worker.html +methods-2.html +methods-2-worker.html +--min-version 2.0.1 offscreencanvas-query.html +--min-version 2.0.1 offscreencanvas-sync.html +--min-version 2.0.1 offscreencanvas-timer-query.html +--min-version 2.0.1 offscreencanvas-transfer-image-bitmap.html diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.html new file mode 100644 index 0000000000..9362a0a4ce --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.html @@ -0,0 +1,39 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL2 Context Creation Test for OffscreenCanvas in a worker</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> +<script> +description("This test ensures that the WebGL context can be created on an OffscreenCanvas."); + +if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); +} else { + var worker = new Worker('context-creation-worker.js'); + worker.postMessage("Start worker"); + worker.onmessage = function(e) { + if (e.data == "Test passed") { + testPassed("All tests have passed"); + } else { + testFailed("Some tests failed"); + } + finishTest(); + } +} + +</script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.js b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.js new file mode 100644 index 0000000000..67bf406482 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation-worker.js @@ -0,0 +1,13 @@ +/* +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. +*/ + +importScripts("../../js/tests/canvas-tests-utils.js"); +self.onmessage = function(e) { + if (contextCreation('webgl2')) + self.postMessage("Test passed"); + else + self.postMessage("Test failed"); +}; diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation.html new file mode 100644 index 0000000000..c3f1d2657d --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/context-creation.html @@ -0,0 +1,36 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL2 Context Creation Test</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script src="../../js/tests/canvas-tests-utils.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> +<script> +description("This test ensures that the WebGL2 context can be created on an OffscreenCanvas."); + +if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); +} else { + if (contextCreation('webgl2')) { + testPassed("WebGL2 context created correctly."); + } else { + testFailed("WebGL2 context creation failed"); + } +} + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.html new file mode 100644 index 0000000000..582fd556a2 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.html @@ -0,0 +1,39 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL Methods Test for OffscreenCanvas in a worker</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> +<script> +description("This test ensures that the WebGL context created for an OffscreenCanvas has all the methods in the specification."); + +if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); +} else { + var worker = new Worker('methods-2-worker.js'); + worker.postMessage("Start worker"); + worker.onmessage = function(e) { + if (e.data == "Test passed") { + testPassed("All test have passed"); + } else { + testFailed("Some tests failed"); + } + finishTest(); + } +} + +</script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.js b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.js new file mode 100644 index 0000000000..94c1378f0d --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2-worker.js @@ -0,0 +1,13 @@ +/* +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. +*/ + +importScripts("../../js/tests/canvas-tests-utils.js"); +self.onmessage = function(e) { + if (testAPIs('webgl2')) + self.postMessage("Test passed"); + else + self.postMessage("Test failed"); +} diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2.html new file mode 100644 index 0000000000..c4250f5724 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/methods-2.html @@ -0,0 +1,36 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>WebGL2 Methods Test for OffscreenCanvas in a worker</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script src="../../js/tests/canvas-tests-utils.js"></script> +</head> +<body> +<div id="description"></div> +<div id="console"></div> +<script> +description("This test ensures that the WebGL context has all the methods in the specification."); + +if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); +} else { + if (testAPIs('webgl2')) { + testPassed("All WebGL2 methods found"); + } else { + testFailed("Some WebGL2 methods not found"); + } +} + +var successfullyParsed = true; +</script> +<script src="../../js/js-test-post.js"></script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-query.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-query.html new file mode 100644 index 0000000000..8d9e92e511 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-query.html @@ -0,0 +1,79 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Test for Query objects with OffscreenCanvas</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> + <div id="description"></div> + <div id="console"></div> + <script id='myWorker' type='text/worker'> + function tick(callback) { + function tickImpl() { + const res = callback(); + if (res) { + if (requestAnimationFrame) { + requestAnimationFrame(tickImpl); + } else { + setTimeout(tickImpl, 10); + } + } + } + + tickImpl(); + } + + self.onmessage = function(e) { + let canvas = new OffscreenCanvas(128, 128); + let gl = canvas.getContext("webgl2"); + let query = gl.createQuery(); + gl.beginQuery(gl.ANY_SAMPLES_PASSED_CONSERVATIVE, query); + gl.endQuery(gl.ANY_SAMPLES_PASSED_CONSERVATIVE); + gl.clearColor(0.0, 1.0, 0.0, 1.0); + gl.clear(gl.COLOR_BUFFER_BIT); + tick(function() { + const status = gl.getQueryParameter(query, gl.QUERY_RESULT_AVAILABLE); + if (status) { + self.postMessage("PASSED - query object completed successfully from worker"); + return false; + } else { + const err = gl.getError(); + if (err != 0) { + self.postMessage("FAILED - GL error " + err); + return false; + } + } + return true; + }); + }; + </script> + <script> + "use strict"; + description("This test ensures that query objects work with the WebGL 2.0 context created via OffscreenCanvas."); + if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); + } else { + var blob = new Blob([document.getElementById("myWorker").textContent]); + var worker = new Worker(URL.createObjectURL(blob)); + worker.onmessage = function(msg) { + if (msg.data.startsWith("PASSED")) { + testPassed(msg.data); + } else { + testFailed(msg.data); + } + finishTest(); + } + worker.postMessage("Start Worker"); + } + </script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-sync.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-sync.html new file mode 100644 index 0000000000..dc70a60bbd --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-sync.html @@ -0,0 +1,77 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Test for Sync objects with OffscreenCanvas</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> + <div id="description"></div> + <div id="console"></div> + <script id='myWorker' type='text/worker'> + function tick(callback) { + function tickImpl() { + const res = callback(); + if (res) { + if (requestAnimationFrame) { + requestAnimationFrame(tickImpl); + } else { + setTimeout(tickImpl, 10); + } + } + } + + tickImpl(); + } + + self.onmessage = function(e) { + let canvas = new OffscreenCanvas(128, 128); + let gl = canvas.getContext("webgl2"); + let sync = gl.fenceSync(gl.SYNC_GPU_COMMANDS_COMPLETE, 0); + gl.clearColor(0.0, 1.0, 0.0, 1.0); + gl.clear(gl.COLOR_BUFFER_BIT); + tick(function() { + const status = gl.getSyncParameter(sync, gl.SYNC_STATUS); + if (status == gl.SIGNALED) { + self.postMessage("PASSED - Sync object signaled successfully from worker"); + return false; + } else { + const err = gl.getError(); + if (err != 0) { + self.postMessage("FAILED - GL error " + err); + return false; + } + } + return true; + }); + }; + </script> + <script> + "use strict"; + description("This test ensures that sync objects work with the WebGL 2.0 context created via OffscreenCanvas."); + if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); + } else { + var blob = new Blob([document.getElementById("myWorker").textContent]); + var worker = new Worker(URL.createObjectURL(blob)); + worker.onmessage = function(msg) { + if (msg.data.startsWith("PASSED")) { + testPassed(msg.data); + } else { + testFailed(msg.data); + } + finishTest(); + } + worker.postMessage("Start Worker"); + } + </script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-timer-query.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-timer-query.html new file mode 100644 index 0000000000..8714956fd1 --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-timer-query.html @@ -0,0 +1,84 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Test for Timer Query objects with OffscreenCanvas</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +</head> +<body> + <div id="description"></div> + <div id="console"></div> + <script id='myWorker' type='text/worker'> + function tick(callback) { + function tickImpl() { + const res = callback(); + if (res) { + if (requestAnimationFrame) { + requestAnimationFrame(tickImpl); + } else { + setTimeout(tickImpl, 10); + } + } + } + + tickImpl(); + } + + self.onmessage = function(e) { + let canvas = new OffscreenCanvas(128, 128); + let gl = canvas.getContext("webgl2"); + let ext = gl.getExtension("EXT_disjoint_timer_query_webgl2"); + if (!ext) { + self.postMessage("PASSED - no EXT_disjoint_timer_query_webgl2 extension - this is legal"); + return false; + } + let query = gl.createQuery(); + gl.beginQuery(ext.TIME_ELAPSED_EXT, query); + gl.endQuery(ext.TIME_ELAPSED_EXT); + gl.clearColor(0.0, 1.0, 0.0, 1.0); + gl.clear(gl.COLOR_BUFFER_BIT); + tick(function() { + const status = gl.getQueryParameter(query, gl.QUERY_RESULT_AVAILABLE); + if (status) { + self.postMessage("PASSED - timer query object completed successfully on worker"); + return false; + } else { + const err = gl.getError(); + if (err != 0) { + self.postMessage("FAILED - GL error " + err); + return false; + } + } + return true; + }); + }; + </script> + <script> + "use strict"; + description("This test ensures that timer query objects work with the WebGL 2.0 context created via OffscreenCanvas."); + if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); + } else { + var blob = new Blob([document.getElementById('myWorker').textContent]); + var worker = new Worker(URL.createObjectURL(blob)); + worker.onmessage = function(msg) { + if (msg.data.startsWith("PASSED")) { + testPassed(msg.data); + } else { + testFailed(msg.data); + } + finishTest(); + } + worker.postMessage("Start Worker"); + } + </script> +</body> +</html> diff --git a/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html new file mode 100644 index 0000000000..cb9232b65a --- /dev/null +++ b/dom/canvas/test/webgl-conf/checkout/conformance2/offscreencanvas/offscreencanvas-transfer-image-bitmap.html @@ -0,0 +1,50 @@ +<!-- +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. +--> +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>Test for OffscreenCanvas TransferToImageBitmap</title> +<link rel="stylesheet" href="../../resources/js-test-style.css"/> +<script src="../../js/js-test-pre.js"></script> +<script src="../../js/webgl-test-utils.js"></script> +<script src="../../js/tests/tex-image-and-sub-image-utils.js"></script> +<script src="../../js/tests/offscreencanvas-transfer-image-bitmap.js"></script> +</head> +<body> + <div id="description"></div> + <div id="console"></div> + <script id='myWorker' type='text/worker'> + self.onmessage = function(e) { + var canvas = new OffscreenCanvas(128, 128); + var gl = canvas.getContext("webgl2"); + gl.clearColor(1.0, 1.0, 0.0, 1.0); + gl.clear(gl.COLOR_BUFFER_BIT); + var image = canvas.transferToImageBitmap(); + + self.postMessage({ bitmap: image }, + [ image ]); + }; + </script> + <script> + "use strict"; + description("This test ensures that the transferToImageBitmap function of OffscreenCanvas webgl2 context is functional."); + if (!window.OffscreenCanvas) { + testPassed("No OffscreenCanvas support"); + finishTest(); + } else { + var blob = new Blob([document.getElementById('myWorker').textContent]); + var worker = new Worker(URL.createObjectURL(blob)); + + worker.onmessage = function(msg) { + testTransferToImageBitmap("webgl2", msg.data.bitmap); + finishTest(); + } + worker.postMessage("Start Worker"); + } + </script> +</body> +</html> |