mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 20:28:42 +02:00
Update third party dependencies WebGPU command encoder creation WebGPU CommandBuffer creation and submission WebGPU Compute pass recording Differential Revision: https://phabricator.services.mozilla.com/D59896 --HG-- rename : gfx/wgpu/wgpu-core/src/device.rs => gfx/wgpu/wgpu-core/src/device/mod.rs extra : moz-landing-system : lando
27 lines
680 B
HTML
27 lines
680 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
|
|
ok(SpecialPowers.getBoolPref('dom.webgpu.enabled'), 'Pref should be enabled.');
|
|
|
|
const func = async function() {
|
|
const adapter = await navigator.gpu.requestAdapter();
|
|
const device = await adapter.requestDevice();
|
|
const encoder = device.createCommandEncoder();
|
|
const command_buffer = encoder.finish();
|
|
ok(command_buffer !== undefined, 'command_buffer !== undefined');
|
|
};
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
func().finally(() => SimpleTest.finish());
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|