Lines Matching refs:rasterization_state
612 VkPipelineRasterizationStateCreateInfo rasterization_state; in create_graphics_pipeline() local
613 rasterization_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO; in create_graphics_pipeline()
614 rasterization_state.pNext = NULL; in create_graphics_pipeline()
615 rasterization_state.flags = 0; in create_graphics_pipeline()
616 rasterization_state.depthClampEnable = false; in create_graphics_pipeline()
617 rasterization_state.rasterizerDiscardEnable = false; in create_graphics_pipeline()
618 rasterization_state.polygonMode = VK_POLYGON_MODE_FILL; in create_graphics_pipeline()
619 rasterization_state.cullMode = VK_CULL_MODE_NONE; in create_graphics_pipeline()
620 rasterization_state.frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE; in create_graphics_pipeline()
621 rasterization_state.depthBiasEnable = false; in create_graphics_pipeline()
622 rasterization_state.lineWidth = 1.0; in create_graphics_pipeline()
687 gfx_pipeline_info.pRasterizationState = &rasterization_state; in create_graphics_pipeline()