Interface gpuGPURenderPassDepthStencilAttachment

interface gpuGPURenderPassDepthStencilAttachment {
    depthClearValue?: number;
    depthLoadOp?: string;
    depthReadOnly?: boolean;
    depthStoreOp?: string;
    stencilClearValue?: number;
    stencilLoadOp?: string;
    stencilReadOnly?: boolean;
    stencilStoreOp?: string;
    view: gpuGPUTextureView;
}

Properties

depthClearValue?: number
depthLoadOp?: string
depthReadOnly?: boolean
depthStoreOp?: string
stencilClearValue?: number
stencilLoadOp?: string
stencilReadOnly?: boolean
stencilStoreOp?: string