diff options
author | Jo Franchetti <jofranchetti@gmail.com> | 2024-05-06 02:56:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-05 18:56:55 -0700 |
commit | a69b4646a02dc49a9222cd50c49d3e194f320ff2 (patch) | |
tree | 9a86aaba36d72341d0742b2dafc587ef10d7a14c /cli/tsc/dts/lib.deno_webgpu.d.ts | |
parent | 397be1a22c4e1666bc496af01acb72de0403e695 (diff) |
docs: update categories to match new planned sitemap (#23677)
Updating categories for new sitemap as documented here:
https://lucid.app/lucidspark/744b0498-a133-494d-981c-76059dd18885/edit?view_items=jpvBwFdYlNdB&invitationId=inv_50c83415-2aa5-423f-b438-ea156695c08b
Diffstat (limited to 'cli/tsc/dts/lib.deno_webgpu.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno_webgpu.d.ts | 268 |
1 files changed, 134 insertions, 134 deletions
diff --git a/cli/tsc/dts/lib.deno_webgpu.d.ts b/cli/tsc/dts/lib.deno_webgpu.d.ts index 8362ba2e2..8051a051b 100644 --- a/cli/tsc/dts/lib.deno_webgpu.d.ts +++ b/cli/tsc/dts/lib.deno_webgpu.d.ts @@ -6,7 +6,7 @@ /// <reference lib="esnext" /> /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUObjectBase { @@ -14,7 +14,7 @@ declare interface GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUObjectDescriptorBase { @@ -22,7 +22,7 @@ declare interface GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUSupportedLimits { @@ -59,7 +59,7 @@ declare class GPUSupportedLimits { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUSupportedFeatures { @@ -80,7 +80,7 @@ declare class GPUSupportedFeatures { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUAdapterInfo { @@ -91,7 +91,7 @@ declare class GPUAdapterInfo { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPU { @@ -102,7 +102,7 @@ declare class GPU { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURequestAdapterOptions { @@ -111,13 +111,13 @@ declare interface GPURequestAdapterOptions { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUPowerPreference = "low-power" | "high-performance"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUAdapter { @@ -130,7 +130,7 @@ declare class GPUAdapter { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUDeviceDescriptor extends GPUObjectDescriptorBase { @@ -139,7 +139,7 @@ declare interface GPUDeviceDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUFeatureName = @@ -170,7 +170,7 @@ declare type GPUFeatureName = | "vertex-attribute-64bit"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUDevice extends EventTarget implements GPUObjectBase { @@ -223,7 +223,7 @@ declare class GPUDevice extends EventTarget implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUBuffer implements GPUObjectBase { @@ -245,13 +245,13 @@ declare class GPUBuffer implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBufferMapState = "unmapped" | "pending" | "mapped"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBufferDescriptor extends GPUObjectDescriptorBase { @@ -261,19 +261,19 @@ declare interface GPUBufferDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBufferUsageFlags = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUFlagsConstant = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUBufferUsage { @@ -290,13 +290,13 @@ declare class GPUBufferUsage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUMapModeFlags = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUMapMode { @@ -305,7 +305,7 @@ declare class GPUMapMode { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUTexture implements GPUObjectBase { @@ -325,7 +325,7 @@ declare class GPUTexture implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUTextureDescriptor extends GPUObjectDescriptorBase { @@ -339,19 +339,19 @@ declare interface GPUTextureDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureDimension = "1d" | "2d" | "3d"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureUsageFlags = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUTextureUsage { @@ -363,7 +363,7 @@ declare class GPUTextureUsage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUTextureView implements GPUObjectBase { @@ -371,7 +371,7 @@ declare class GPUTextureView implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUTextureViewDescriptor extends GPUObjectDescriptorBase { @@ -385,7 +385,7 @@ declare interface GPUTextureViewDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureViewDimension = @@ -397,13 +397,13 @@ declare type GPUTextureViewDimension = | "3d"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureAspect = "all" | "stencil-only" | "depth-only"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureFormat = @@ -504,7 +504,7 @@ declare type GPUTextureFormat = | "astc-12x12-unorm-srgb"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUSampler implements GPUObjectBase { @@ -512,7 +512,7 @@ declare class GPUSampler implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUSamplerDescriptor extends GPUObjectDescriptorBase { @@ -529,25 +529,25 @@ declare interface GPUSamplerDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUAddressMode = "clamp-to-edge" | "repeat" | "mirror-repeat"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUFilterMode = "nearest" | "linear"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUMipmapFilterMode = "nearest" | "linear"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUCompareFunction = @@ -561,7 +561,7 @@ declare type GPUCompareFunction = | "always"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUBindGroupLayout implements GPUObjectBase { @@ -569,7 +569,7 @@ declare class GPUBindGroupLayout implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBindGroupLayoutDescriptor extends GPUObjectDescriptorBase { @@ -577,7 +577,7 @@ declare interface GPUBindGroupLayoutDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBindGroupLayoutEntry { @@ -591,13 +591,13 @@ declare interface GPUBindGroupLayoutEntry { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUShaderStageFlags = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUShaderStage { @@ -607,7 +607,7 @@ declare class GPUShaderStage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBufferBindingLayout { @@ -617,13 +617,13 @@ declare interface GPUBufferBindingLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBufferBindingType = "uniform" | "storage" | "read-only-storage"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUSamplerBindingLayout { @@ -631,7 +631,7 @@ declare interface GPUSamplerBindingLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUSamplerBindingType = @@ -640,7 +640,7 @@ declare type GPUSamplerBindingType = | "comparison"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUTextureBindingLayout { @@ -650,7 +650,7 @@ declare interface GPUTextureBindingLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUTextureSampleType = @@ -661,7 +661,7 @@ declare type GPUTextureSampleType = | "uint"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUStorageTextureAccess = @@ -670,7 +670,7 @@ declare type GPUStorageTextureAccess = | "read-write"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUStorageTextureBindingLayout { @@ -680,7 +680,7 @@ declare interface GPUStorageTextureBindingLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUBindGroup implements GPUObjectBase { @@ -688,7 +688,7 @@ declare class GPUBindGroup implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBindGroupDescriptor extends GPUObjectDescriptorBase { @@ -697,7 +697,7 @@ declare interface GPUBindGroupDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBindingResource = @@ -706,7 +706,7 @@ declare type GPUBindingResource = | GPUBufferBinding; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBindGroupEntry { @@ -715,7 +715,7 @@ declare interface GPUBindGroupEntry { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBufferBinding { @@ -725,7 +725,7 @@ declare interface GPUBufferBinding { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUPipelineLayout implements GPUObjectBase { @@ -733,7 +733,7 @@ declare class GPUPipelineLayout implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase { @@ -741,13 +741,13 @@ declare interface GPUPipelineLayoutDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUCompilationMessageType = "error" | "warning" | "info"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCompilationMessage { @@ -758,7 +758,7 @@ declare interface GPUCompilationMessage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCompilationInfo { @@ -790,7 +790,7 @@ declare interface GPUPipelineErrorInit { declare type GPUPipelineErrorReason = "validation" | "internal"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUShaderModule implements GPUObjectBase { @@ -798,7 +798,7 @@ declare class GPUShaderModule implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUShaderModuleDescriptor extends GPUObjectDescriptorBase { @@ -807,13 +807,13 @@ declare interface GPUShaderModuleDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUAutoLayoutMode = "auto"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUPipelineDescriptorBase extends GPUObjectDescriptorBase { @@ -821,7 +821,7 @@ declare interface GPUPipelineDescriptorBase extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUPipelineBase { @@ -829,7 +829,7 @@ declare interface GPUPipelineBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUProgrammableStage { @@ -839,7 +839,7 @@ declare interface GPUProgrammableStage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUComputePipeline implements GPUObjectBase, GPUPipelineBase { @@ -849,7 +849,7 @@ declare class GPUComputePipeline implements GPUObjectBase, GPUPipelineBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUComputePipelineDescriptor @@ -858,7 +858,7 @@ declare interface GPUComputePipelineDescriptor } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPURenderPipeline implements GPUObjectBase, GPUPipelineBase { @@ -868,7 +868,7 @@ declare class GPURenderPipeline implements GPUObjectBase, GPUPipelineBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPipelineDescriptor @@ -881,7 +881,7 @@ declare interface GPURenderPipelineDescriptor } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUPrimitiveState { @@ -893,7 +893,7 @@ declare interface GPUPrimitiveState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUPrimitiveTopology = @@ -904,19 +904,19 @@ declare type GPUPrimitiveTopology = | "triangle-strip"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUFrontFace = "ccw" | "cw"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUCullMode = "none" | "front" | "back"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUMultisampleState { @@ -926,7 +926,7 @@ declare interface GPUMultisampleState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUFragmentState extends GPUProgrammableStage { @@ -934,7 +934,7 @@ declare interface GPUFragmentState extends GPUProgrammableStage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUColorTargetState { @@ -945,7 +945,7 @@ declare interface GPUColorTargetState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBlendState { @@ -954,13 +954,13 @@ declare interface GPUBlendState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUColorWriteFlags = number; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUColorWrite { @@ -972,7 +972,7 @@ declare class GPUColorWrite { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUBlendComponent { @@ -982,7 +982,7 @@ declare interface GPUBlendComponent { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBlendFactor = @@ -1001,7 +1001,7 @@ declare type GPUBlendFactor = | "one-minus-constant"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUBlendOperation = @@ -1012,7 +1012,7 @@ declare type GPUBlendOperation = | "max"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUDepthStencilState { @@ -1033,7 +1033,7 @@ declare interface GPUDepthStencilState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUStencilFaceState { @@ -1044,7 +1044,7 @@ declare interface GPUStencilFaceState { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUStencilOperation = @@ -1058,13 +1058,13 @@ declare type GPUStencilOperation = | "decrement-wrap"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUIndexFormat = "uint16" | "uint32"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUVertexFormat = @@ -1101,13 +1101,13 @@ declare type GPUVertexFormat = | "unorm10-10-10-2"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUVertexStepMode = "vertex" | "instance"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUVertexState extends GPUProgrammableStage { @@ -1115,7 +1115,7 @@ declare interface GPUVertexState extends GPUProgrammableStage { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUVertexBufferLayout { @@ -1125,7 +1125,7 @@ declare interface GPUVertexBufferLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUVertexAttribute { @@ -1136,7 +1136,7 @@ declare interface GPUVertexAttribute { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUImageDataLayout { @@ -1146,7 +1146,7 @@ declare interface GPUImageDataLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUCommandBuffer implements GPUObjectBase { @@ -1154,13 +1154,13 @@ declare class GPUCommandBuffer implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCommandBufferDescriptor extends GPUObjectDescriptorBase {} /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUCommandEncoder implements GPUObjectBase { @@ -1221,13 +1221,13 @@ declare class GPUCommandEncoder implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCommandEncoderDescriptor extends GPUObjectDescriptorBase {} /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUImageCopyBuffer extends GPUImageDataLayout { @@ -1235,7 +1235,7 @@ declare interface GPUImageCopyBuffer extends GPUImageDataLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUImageCopyTexture { @@ -1246,7 +1246,7 @@ declare interface GPUImageCopyTexture { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUProgrammablePassEncoder { @@ -1270,7 +1270,7 @@ declare interface GPUProgrammablePassEncoder { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUComputePassEncoder @@ -1302,7 +1302,7 @@ declare class GPUComputePassEncoder } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUComputePassTimestampWrites { @@ -1312,7 +1312,7 @@ declare interface GPUComputePassTimestampWrites { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUComputePassDescriptor extends GPUObjectDescriptorBase { @@ -1320,7 +1320,7 @@ declare interface GPUComputePassDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderEncoderBase { @@ -1361,7 +1361,7 @@ declare interface GPURenderEncoderBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPURenderPassEncoder @@ -1441,7 +1441,7 @@ declare class GPURenderPassEncoder } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPassTimestampWrites { @@ -1451,7 +1451,7 @@ declare interface GPURenderPassTimestampWrites { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPassDescriptor extends GPUObjectDescriptorBase { @@ -1462,7 +1462,7 @@ declare interface GPURenderPassDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPassColorAttachment { @@ -1475,7 +1475,7 @@ declare interface GPURenderPassColorAttachment { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPassDepthStencilAttachment { @@ -1493,19 +1493,19 @@ declare interface GPURenderPassDepthStencilAttachment { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPULoadOp = "load" | "clear"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUStoreOp = "store" | "discard"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPURenderBundle implements GPUObjectBase { @@ -1513,13 +1513,13 @@ declare class GPURenderBundle implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderBundleDescriptor extends GPUObjectDescriptorBase {} /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPURenderBundleEncoder @@ -1576,7 +1576,7 @@ declare class GPURenderBundleEncoder } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderPassLayout extends GPUObjectDescriptorBase { @@ -1586,7 +1586,7 @@ declare interface GPURenderPassLayout extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPURenderBundleEncoderDescriptor extends GPURenderPassLayout { @@ -1595,7 +1595,7 @@ declare interface GPURenderBundleEncoderDescriptor extends GPURenderPassLayout { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUQueue implements GPUObjectBase { @@ -1622,7 +1622,7 @@ declare class GPUQueue implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUQuerySet implements GPUObjectBase { @@ -1635,7 +1635,7 @@ declare class GPUQuerySet implements GPUObjectBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUQuerySetDescriptor extends GPUObjectDescriptorBase { @@ -1644,19 +1644,19 @@ declare interface GPUQuerySetDescriptor extends GPUObjectDescriptorBase { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUQueryType = "occlusion" | "timestamp"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUDeviceLostReason = "destroyed"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUDeviceLostInfo { @@ -1665,7 +1665,7 @@ declare interface GPUDeviceLostInfo { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUError { @@ -1673,7 +1673,7 @@ declare class GPUError { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUOutOfMemoryError extends GPUError { @@ -1681,7 +1681,7 @@ declare class GPUOutOfMemoryError extends GPUError { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare class GPUValidationError extends GPUError { @@ -1697,7 +1697,7 @@ declare class GPUInternalError extends GPUError { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUErrorFilter = "out-of-memory" | "validation" | "internal"; @@ -1724,7 +1724,7 @@ declare interface GPUUncapturedErrorEventInit extends EventInit { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUColorDict { @@ -1735,13 +1735,13 @@ declare interface GPUColorDict { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUColor = number[] | GPUColorDict; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUOrigin3DDict { @@ -1751,13 +1751,13 @@ declare interface GPUOrigin3DDict { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUOrigin3D = number[] | GPUOrigin3DDict; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUExtent3DDict { @@ -1767,19 +1767,19 @@ declare interface GPUExtent3DDict { } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUExtent3D = number[] | GPUExtent3DDict; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare type GPUCanvasAlphaMode = "opaque" | "premultiplied"; /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCanvasConfiguration { @@ -1793,7 +1793,7 @@ declare interface GPUCanvasConfiguration { height: number; } /** - * @category WebGPU + * @category GPU * @tags unstable */ declare interface GPUCanvasContext { |