On this page
GPURenderPassDepthStencilAttachment
interface GPURenderPassDepthStencilAttachment {
depthClearValue?: number;
depthLoadOp?: GPULoadOp;
depthReadOnly?: boolean;
depthStoreOp?: GPUStoreOp;
stencilClearValue?: number;
stencilLoadOp?: GPULoadOp;
stencilReadOnly?: boolean;
stencilStoreOp?: GPUStoreOp;
view: GPUTextureView;
}
Properties
depthClearValue?: number
depthLoadOp?: GPULoadOp
depthReadOnly?: boolean
depthStoreOp?: GPUStoreOp
stencilClearValue?: number
stencilLoadOp?: GPULoadOp
stencilReadOnly?: boolean
stencilStoreOp?: GPUStoreOp
view: GPUTextureView
© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/GPURenderPassDepthStencilAttachment