• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
2[[VkPipelineRasterizationStateCreateInfo,VkPipelineRasterizationStateCreateInfo]]
3[source,c++]
4----
5typedef struct VkPipelineRasterizationStateCreateInfo {
6    VkStructureType                            sType;
7    const void*                                pNext;
8    VkPipelineRasterizationStateCreateFlags    flags;
9    VkBool32                                   depthClampEnable;
10    VkBool32                                   rasterizerDiscardEnable;
11    VkPolygonMode                              polygonMode;
12    VkCullModeFlags                            cullMode;
13    VkFrontFace                                frontFace;
14    VkBool32                                   depthBiasEnable;
15    float                                      depthBiasConstantFactor;
16    float                                      depthBiasClamp;
17    float                                      depthBiasSlopeFactor;
18    float                                      lineWidth;
19} VkPipelineRasterizationStateCreateInfo;
20----
21