Class VkPipelineDepthStencilStateCreateInfo

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPipelineDepthStencilStateCreateInfo>
org.lwjgl.vulkan.VkPipelineDepthStencilStateCreateInfo
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPipelineDepthStencilStateCreateInfo extends org.lwjgl.system.Struct<VkPipelineDepthStencilStateCreateInfo> implements org.lwjgl.system.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();
 }