DepthStencilAttachment constructor
DepthStencilAttachment({ - LoadAction depthLoadAction = LoadAction.clear,
- StoreAction depthStoreAction = StoreAction.dontCare,
- double depthClearValue = 0.0,
- LoadAction stencilLoadAction = LoadAction.clear,
- StoreAction stencilStoreAction = StoreAction.dontCare,
- int stencilClearValue = 0,
- 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,
});