Home
last modified time | relevance | path

Searched refs:rasterization_state (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/amd/compiler/tests/
Dhelpers.cpp693 VkPipelineRasterizationStateCreateInfo rasterization_state; in create_graphics_pipeline() local
694 rasterization_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO; in create_graphics_pipeline()
695 rasterization_state.pNext = NULL; in create_graphics_pipeline()
696 rasterization_state.flags = 0; in create_graphics_pipeline()
697 rasterization_state.depthClampEnable = false; in create_graphics_pipeline()
698 rasterization_state.rasterizerDiscardEnable = false; in create_graphics_pipeline()
699 rasterization_state.polygonMode = VK_POLYGON_MODE_FILL; in create_graphics_pipeline()
700 rasterization_state.cullMode = VK_CULL_MODE_NONE; in create_graphics_pipeline()
701 rasterization_state.frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE; in create_graphics_pipeline()
702 rasterization_state.depthBiasEnable = false; in create_graphics_pipeline()
[all …]
/third_party/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_pipeline.c280 VkPipelineRasterizationStateCreateInfo *rasterization_state; in deep_copy_graphics_create_info() local
346 rasterization_state = ralloc(mem_ctx, VkPipelineRasterizationStateCreateInfo); in deep_copy_graphics_create_info()
347 if (!rasterization_state) in deep_copy_graphics_create_info()
349 deep_copy_rasterization_state(mem_ctx, rasterization_state, src->pRasterizationState); in deep_copy_graphics_create_info()
350 dst->pRasterizationState = rasterization_state; in deep_copy_graphics_create_info()