Type Alias GPURenderPassDepthStencilAttachment
Source pub(crate) type GPURenderPassDepthStencilAttachment = GPURenderPassDepthStencilAttachment<DomTypeHolder>;
pub(crate) struct GPURenderPassDepthStencilAttachment {
pub depthClearValue: Option<Finite<f32>>,
pub depthLoadOp: Option<GPULoadOp>,
pub depthReadOnly: bool,
pub depthStoreOp: Option<GPUStoreOp>,
pub stencilClearValue: u32,
pub stencilLoadOp: Option<GPULoadOp>,
pub stencilReadOnly: bool,
pub stencilStoreOp: Option<GPUStoreOp>,
pub view: Root<Dom<GPUTextureView>>,
}