Lines Matching refs:rasterState
728 VkPipelineRasterizationStateCreateInfo rasterState;
838 deMemset(&rasterState, 0xcd, sizeof(rasterState));
839 rasterState.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO;
840 rasterState.pNext = DE_NULL;
841 rasterState.flags = 0;
842 rasterState.depthClampEnable = VK_FALSE;
843 rasterState.rasterizerDiscardEnable = VK_FALSE;
844 rasterState.polygonMode = VK_POLYGON_MODE_FILL;
845 rasterState.cullMode = VK_CULL_MODE_NONE;
846 rasterState.frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE;
847 rasterState.depthBiasEnable = VK_FALSE;
848 rasterState.lineWidth = 1;
917 pipelineState.pRasterizationState = &rasterState;