Chartbreaker
    Preparing search index...

    Interface GPURenderPassDepthStencilAttachment

    interface GPURenderPassDepthStencilAttachment {
        depthClearValue?: number;
        depthLoadOp?: GPULoadOp;
        depthReadOnly?: boolean;
        depthStoreOp?: GPUStoreOp;
        stencilClearValue?: number;
        stencilLoadOp?: GPULoadOp;
        stencilReadOnly?: boolean;
        stencilStoreOp?: GPUStoreOp;
        view: GPUTexture | GPUTextureView;
    }
    Index

    Properties

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