mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-31 17:50:35 +01:00
anv: Fix untyped data port cache pipe control dump output
Fixes:845ab3d627Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34855> (cherry picked from commitbb61a78911)
This commit is contained in:
parent
50a5d6b025
commit
36d45e2c5a
2 changed files with 2 additions and 2 deletions
|
|
@ -6464,7 +6464,7 @@
|
|||
"description": "anv: Fix untyped data port cache pipe control dump output",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "845ab3d627995803219c5fbdfe6734a966218ce0",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ convert_pc_to_bits(struct GENX(PIPE_CONTROL) *pc) {
|
|||
bits |= (pc->StallAtPixelScoreboard) ? ANV_PIPE_STALL_AT_SCOREBOARD_BIT : 0;
|
||||
bits |= (pc->DepthStallEnable) ? ANV_PIPE_DEPTH_STALL_BIT : 0;
|
||||
bits |= (pc->CommandStreamerStallEnable) ? ANV_PIPE_CS_STALL_BIT : 0;
|
||||
#if GFX_VERx10 == 125
|
||||
#if GFX_VERx10 >= 125
|
||||
bits |= (pc->UntypedDataPortCacheFlushEnable) ? ANV_PIPE_UNTYPED_DATAPORT_CACHE_FLUSH_BIT : 0;
|
||||
bits |= (pc->CCSFlushEnable) ? ANV_PIPE_CCS_CACHE_FLUSH_BIT : 0;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue