mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 16:50:10 +01:00
intel/compiler: fix assert from ver to verx10
Fixes: 027b8b4249 ("intel/compiler: Add helper for barrier message payload setup for gfx >= 125")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18546>
This commit is contained in:
parent
af8ab4a889
commit
40c2e0a317
1 changed files with 1 additions and 1 deletions
|
|
@ -1087,7 +1087,7 @@ static void
|
|||
setup_barrier_message_payload_gfx125(const fs_builder &bld,
|
||||
const fs_reg &msg_payload)
|
||||
{
|
||||
assert(bld.shader->devinfo->ver >= 125);
|
||||
assert(bld.shader->devinfo->verx10 >= 125);
|
||||
|
||||
/* From BSpec: 54006, mov r0.2[31:24] into m0.2[31:24] and m0.2[23:16] */
|
||||
fs_reg m0_10ub = component(retype(msg_payload, BRW_REGISTER_TYPE_UB), 10);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue