mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 09:18:04 +02:00
intel/compiler: use the WA framework when emitting WA 14014595444
Fixes:d276ad4"intel/compiler: implement Wa_14014595444 for DG2" Signed-off-by: Rohan Garg <rohan.garg@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36262> (cherry picked from commitc978394e00)
This commit is contained in:
parent
3a822c057a
commit
e561070e1a
2 changed files with 3 additions and 3 deletions
|
|
@ -6804,7 +6804,7 @@
|
|||
"description": "intel/compiler: use the WA framework when emitting WA 14014595444",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "d276ad45207356abeed1fd920714443b553ed1a2",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -1113,8 +1113,8 @@ lower_sampler_logical_send(const brw_builder &bld, brw_inst *inst,
|
|||
bld.MOV(sources[length++], min_lod);
|
||||
|
||||
/* Wa_14014595444: Populate MLOD as parameter 5 (twice). */
|
||||
if (devinfo->verx10 == 125 && op == FS_OPCODE_TXB_LOGICAL &&
|
||||
shadow_c.file == BAD_FILE)
|
||||
if (intel_needs_workaround(devinfo, 14014595444) &&
|
||||
op == FS_OPCODE_TXB_LOGICAL && shadow_c.file == BAD_FILE)
|
||||
bld.MOV(sources[length++], min_lod);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue