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,
- int mipLevel = 0,
- int slice = 0,
})
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,
this.mipLevel = 0,
this.slice = 0,
});