Enum
VkStencilFaceFlagBits
Bitmask specifying sets of stencil state for which to update the compare mask
VkStencilFaceFlagBits
values are:
typedef enum VkStencilFaceFlagBits {
VK_STENCIL_FACE_FRONT_BIT = 0x00000001,
VK_STENCIL_FACE_BACK_BIT = 0x00000002,
VK_STENCIL_FACE_FRONT_AND_BACK = 0x00000003,
VK_STENCIL_FRONT_AND_BACK = VK_STENCIL_FACE_FRONT_AND_BACK,
} VkStencilFaceFlagBits;
VK_STENCIL_FACE_FRONT_BIT
specifies that only the front set of stencil state is updated.VK_STENCIL_FACE_BACK_BIT
specifies that only the back set of stencil state is updated.VK_STENCIL_FACE_FRONT_AND_BACK
is the combination ofVK_STENCIL_FACE_FRONT_BIT
andVK_STENCIL_FACE_BACK_BIT
, and specifies that both sets of stencil state are updated.