intel/fs/xehp: Assert that the compiler is sending all 3 coords for cubemaps.
As required by HSDES:14013363432. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11433>
This commit is contained in:
committed by
Marge Bot
parent
85315f5fb1
commit
231337a13a
@@ -3049,9 +3049,11 @@ bool
|
||||
fs_visitor::opt_zero_samples()
|
||||
{
|
||||
/* Gfx4 infers the texturing opcode based on the message length so we can't
|
||||
* change it.
|
||||
* change it. Gfx12.5 has restrictions on the number of coordinate
|
||||
* parameters that have to be provided for some texture types
|
||||
* (Wa_14013363432).
|
||||
*/
|
||||
if (devinfo->ver < 5)
|
||||
if (devinfo->ver < 5 || devinfo->verx10 == 125)
|
||||
return false;
|
||||
|
||||
bool progress = false;
|
||||
|
||||
Reference in New Issue
Block a user