DepthStencilAttachment constructor

DepthStencilAttachment({
  1. LoadAction depthLoadAction = LoadAction.clear,
  2. StoreAction depthStoreAction = StoreAction.dontCare,
  3. double depthClearValue = 0.0,
  4. LoadAction stencilLoadAction = LoadAction.clear,
  5. StoreAction stencilStoreAction = StoreAction.dontCare,
  6. int stencilClearValue = 0,
  7. required Texture texture,
})

Implementation

DepthStencilAttachment({
  this.depthLoadAction = LoadAction.clear,
  this.depthStoreAction = StoreAction.dontCare,
  this.depthClearValue = 0.0,
  this.stencilLoadAction = LoadAction.clear,
  this.stencilStoreAction = StoreAction.dontCare,
  this.stencilClearValue = 0,
  required this.texture,
});