21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
|
|
[[VkPipelineRasterizationStateCreateInfo,VkPipelineRasterizationStateCreateInfo]]
|
|
[source,c++]
|
|
----
|
|
typedef struct VkPipelineRasterizationStateCreateInfo {
|
|
VkStructureType sType;
|
|
const void* pNext;
|
|
VkPipelineRasterizationStateCreateFlags flags;
|
|
VkBool32 depthClampEnable;
|
|
VkBool32 rasterizerDiscardEnable;
|
|
VkPolygonMode polygonMode;
|
|
VkCullModeFlags cullMode;
|
|
VkFrontFace frontFace;
|
|
VkBool32 depthBiasEnable;
|
|
float depthBiasConstantFactor;
|
|
float depthBiasClamp;
|
|
float depthBiasSlopeFactor;
|
|
float lineWidth;
|
|
} VkPipelineRasterizationStateCreateInfo;
|
|
----
|