Class VkPipelineDepthStencilStateCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPipelineDepthStencilStateCreateInfo extends Struct<VkPipelineDepthStencilStateCreateInfo> implements NativeResource
Structure specifying parameters of a newly created pipeline depth stencil state.
Valid Usage
Valid Usage (Implicit)
See Also

VkGraphicsPipelineCreateInfo, VkStencilOpState

Layout


 struct VkPipelineDepthStencilStateCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkPipelineDepthStencilStateCreateFlags flags();
     VkBool32 depthTestEnable();
     VkBool32 depthWriteEnable();
     VkCompareOp depthCompareOp();
     VkBool32 depthBoundsTestEnable();
     VkBool32 stencilTestEnable();
     VkStencilOpState front();
     VkStencilOpState back();
     float minDepthBounds();
     float maxDepthBounds();
 }