mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 08:42:13 +00:00
32123744b3
Differential Revision: https://phabricator.services.mozilla.com/D141503
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
self.addEventListener("message", async function(event) {
|
|
try {
|
|
const adapter = await navigator.gpu.requestAdapter();
|
|
const device = await adapter.requestDevice();
|
|
|
|
const swapChainFormat = "rgba8unorm";
|
|
const bundleEncoder = device.createRenderBundleEncoder({
|
|
colorFormats: [swapChainFormat],
|
|
});
|
|
const bundle = bundleEncoder.finish({});
|
|
|
|
const texture = device.createTexture({
|
|
size: { width: 100, height: 100, depth: 1 },
|
|
format: swapChainFormat,
|
|
usage: GPUTextureUsage.RENDER_ATTACHMENT,
|
|
});
|
|
const view = texture.createView();
|
|
|
|
const encoder = device.createCommandEncoder();
|
|
const pass = encoder.beginRenderPass({
|
|
colorAttachments: [
|
|
{
|
|
view,
|
|
loadValue: { r: 0, g: 0, b: 0, a: 0 },
|
|
storeOp: "store",
|
|
},
|
|
],
|
|
});
|
|
pass.executeBundles([bundle]);
|
|
pass.endPass();
|
|
const command_buffer = encoder.finish();
|
|
|
|
device.queue.submit([command_buffer]);
|
|
self.postMessage([
|
|
{
|
|
value: command_buffer !== undefined,
|
|
message: "command_buffer !== undefined",
|
|
},
|
|
]);
|
|
} catch (e) {
|
|
self.postMessage([
|
|
{
|
|
value: false,
|
|
message: "Unhandled exception " + e,
|
|
},
|
|
]);
|
|
}
|
|
});
|