mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 16:40:30 +01:00
anv: fix some dynamic rasterization discard cases in pipeline construction
cc: mesa-stable
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15280>
(cherry picked from commit 5ab0e3f0bb)
This commit is contained in:
parent
0185719f0a
commit
bbdcc0d1e4
2 changed files with 3 additions and 5 deletions
|
|
@ -652,7 +652,7 @@
|
|||
"description": "anv: fix some dynamic rasterization discard cases in pipeline construction",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2421,8 +2421,7 @@ copy_non_dynamic_state(struct anv_graphics_pipeline *pipeline,
|
|||
}
|
||||
|
||||
const VkPipelineMultisampleStateCreateInfo *ms_info =
|
||||
pCreateInfo->pRasterizationState->rasterizerDiscardEnable ? NULL :
|
||||
pCreateInfo->pMultisampleState;
|
||||
raster_discard ? NULL : pCreateInfo->pMultisampleState;
|
||||
if (states & ANV_CMD_DIRTY_DYNAMIC_SAMPLE_LOCATIONS) {
|
||||
const VkPipelineSampleLocationsStateCreateInfoEXT *sl_info = ms_info ?
|
||||
vk_find_struct_const(ms_info, PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT) : NULL;
|
||||
|
|
@ -2452,8 +2451,7 @@ copy_non_dynamic_state(struct anv_graphics_pipeline *pipeline,
|
|||
}
|
||||
|
||||
if (states & ANV_CMD_DIRTY_DYNAMIC_COLOR_BLEND_STATE) {
|
||||
if (!pCreateInfo->pRasterizationState->rasterizerDiscardEnable &&
|
||||
uses_color_att) {
|
||||
if (!raster_discard && uses_color_att) {
|
||||
assert(pCreateInfo->pColorBlendState);
|
||||
const VkPipelineColorWriteCreateInfoEXT *color_write_info =
|
||||
vk_find_struct_const(pCreateInfo->pColorBlendState->pNext,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue