GPUDepth Stencil State
data class GPUDepthStencilState(var format: String, var depthWriteEnabled: Boolean? = null, var depthCompare: String? = null, var stencilFront: GPUStencilFaceState? = null, var stencilBack: GPUStencilFaceState? = null, var stencilReadMask: Int? = null, var stencilWriteMask: Int? = null, var depthBias: Int? = null, var depthBiasSlopeScale: Float? = null, var depthBiasClamp: Float? = null)(source)
Constructors
Link copied to clipboard
constructor(format: String, depthWriteEnabled: Boolean? = null, depthCompare: String? = null, stencilFront: GPUStencilFaceState? = null, stencilBack: GPUStencilFaceState? = null, stencilReadMask: Int? = null, stencilWriteMask: Int? = null, depthBias: Int? = null, depthBiasSlopeScale: Float? = null, depthBiasClamp: Float? = null)