Roll third_party/webgpu-cts/ 9fbed0099..3f9b09b36 (8 commits)

Regenerated:
 - expectations.txt
 - ts_sources.txt
 - test_list.txt
 - cache_list.txt
 - resource_files.txt
 - webtest .html files


9fbed0099e..3f9b09b36b
 - 3f9b09 Adjust fuzzy value on canvas_colorspace_rgba16float ref test (#2188)
 - 63e279 Make canvas_colorspace_rgba16float ref test more fuzzy
 - ace40f op,render_pipeline,sample_mask depth stencil multisampled tests (#2179)
 - f26ab8 Implement the division param restrictions in atan2 (#2183)
 - 381672 math: Remove pointless lerp() in biasedRange
 - 381f3d Test GPUCanvasContext.configure colorSpace
 - 3436e5 Clear pages between pages. (#2182)
 - 7e5c20 Test colorSpace in readback tests

Created with './tools/run cts roll'

Change-Id: I0b755e9de472b1091d0719a781e1de41474dcc13
Cq-Include-Trybots: luci.chromium.try:dawn-try-win10-x86-rel,linux-dawn-rel,mac-dawn-rel,win-dawn-rel
Include-Ci-Only-Tests: true
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/117660
Auto-Submit: Ben Clayton <bclayton@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
Ben Clayton
2023-01-24 20:32:05 +00:00
committed by Dawn LUCI CQ
parent 41884e4ebf
commit 5a2b5d9cc9
8 changed files with 346 additions and 121 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html class="reftest-wait">
<base ref="/gen/third_party/dawn/webgpu-cts/src/webgpu" />
<title>WebGPU canvas_colorspace_bgra8unorm</title>
<meta charset="utf-8" />
<style>
canvas {
width: 128px;
height: 128px;
margin-right: 5px;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
<link rel="help" href="https://gpuweb.github.io/gpuweb/" />
<meta name="assert" content="WebGPU bgra8norm canvas with colorSpace set should be rendered correctly" />
<link rel="match" href="./ref/canvas_colorspace-ref.html" />
<script type="module">
import { runColorSpaceTest } from './canvas_colorspace.html.js';
runColorSpaceTest('bgra8unorm');
</script>
<body></body>
</html>

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html class="reftest-wait">
<base ref="/gen/third_party/dawn/webgpu-cts/src/webgpu" />
<title>WebGPU canvas_colorspace_rgba16float</title>
<meta charset="utf-8" />
<style>
canvas {
width: 128px;
height: 128px;
margin-right: 5px;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
<link rel="help" href="https://gpuweb.github.io/gpuweb/" />
<meta name="assert" content="WebGPU rgba16float canvas with colorSpace set should be rendered correctly" />
<link rel="match" href="./ref/canvas_colorspace-ref.html" />
<meta name=fuzzy content="maxDifference=1;totalPixels=8192">
<script type="module">
import { runColorSpaceTest } from './canvas_colorspace.html.js';
runColorSpaceTest('rgba16float');
</script>
<body></body>
</html>

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html class="reftest-wait">
<base ref="/gen/third_party/dawn/webgpu-cts/src/webgpu" />
<title>WebGPU canvas_colorspace_rgba8unorm</title>
<meta charset="utf-8" />
<style>
canvas {
width: 128px;
height: 128px;
margin-right: 5px;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
<link rel="help" href="https://gpuweb.github.io/gpuweb/" />
<meta name="assert" content="WebGPU rgba8unorm canvas with colorSpace set should be rendered correctly" />
<link rel="match" href="./ref/canvas_colorspace-ref.html" />
<script type="module">
import { runColorSpaceTest } from './canvas_colorspace.html.js';
runColorSpaceTest('rgba8unorm');
</script>
<body></body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<base ref="/gen/third_party/dawn/webgpu-cts/src/webgpu" />
<title>WebGPU canvas_colorspace (ref)</title>
<meta charset="utf-8" />
<link rel="help" href="https://gpuweb.github.io/gpuweb/" />
<style>
canvas {
width: 128px;
height: 128px;
margin-right: 5px;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
<body></body>
<script type="module" src="canvas_colorspace-ref.html.js"></script>
</html>