mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
28 lines
702 B
TypeScript
28 lines
702 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { assert } from "@std/assert/assert";
|
|
import { createTextureWithData } from "./texture_with_data.ts";
|
|
import { ignore } from "./_test_util.ts";
|
|
|
|
Deno.test({
|
|
ignore,
|
|
name: "createTextureWithData()",
|
|
fn: async () => {
|
|
const adapter = await navigator.gpu.requestAdapter();
|
|
assert(adapter);
|
|
const device = await adapter.requestDevice();
|
|
assert(device);
|
|
|
|
createTextureWithData(device, {
|
|
format: "bgra8unorm-srgb",
|
|
size: {
|
|
width: 3,
|
|
height: 2,
|
|
},
|
|
usage: GPUTextureUsage.COPY_SRC,
|
|
}, new Uint8Array([1, 1, 1, 1, 1, 1, 1]));
|
|
|
|
device.destroy();
|
|
},
|
|
});
|