GPURenderPassDepthStencilAttachment constructor

GPURenderPassDepthStencilAttachment({
  1. required GPUTextureView view,
  2. num depthClearValue,
  3. GPULoadOp depthLoadOp,
  4. GPUStoreOp depthStoreOp,
  5. bool depthReadOnly,
  6. GPUStencilValue stencilClearValue,
  7. GPULoadOp stencilLoadOp,
  8. GPUStoreOp stencilStoreOp,
  9. bool stencilReadOnly,
})

Implementation

external factory GPURenderPassDepthStencilAttachment({
  required GPUTextureView view,
  num depthClearValue,
  GPULoadOp depthLoadOp,
  GPUStoreOp depthStoreOp,
  bool depthReadOnly,
  GPUStencilValue stencilClearValue,
  GPULoadOp stencilLoadOp,
  GPUStoreOp stencilStoreOp,
  bool stencilReadOnly,
});