Data Fields | |
WGPUCompareFunction | compare |
WGPUStencilOperation | failOp |
WGPUStencilOperation | depthFailOp |
WGPUStencilOperation | passOp |
Default values can be set using WGPU_STENCIL_FACE_STATE_INIT as initializer.
WGPUCompareFunction WGPUStencilFaceState::compare |
If set to WGPUCompareFunction_Undefined, defaults to WGPUCompareFunction_Always.
The INIT
macro sets this to WGPUCompareFunction_Undefined.
WGPUStencilOperation WGPUStencilFaceState::failOp |
If set to WGPUStencilOperation_Undefined, defaults to WGPUStencilOperation_Keep.
The INIT
macro sets this to WGPUStencilOperation_Undefined.
WGPUStencilOperation WGPUStencilFaceState::depthFailOp |
If set to WGPUStencilOperation_Undefined, defaults to WGPUStencilOperation_Keep.
The INIT
macro sets this to WGPUStencilOperation_Undefined.
WGPUStencilOperation WGPUStencilFaceState::passOp |
If set to WGPUStencilOperation_Undefined, defaults to WGPUStencilOperation_Keep.
The INIT
macro sets this to WGPUStencilOperation_Undefined.