mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
i965/fs: legalize [u]int64 to 32-bit data conversions in lower_d2x
Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99660 Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
8734461c58
commit
b115407d75
1 changed files with 3 additions and 1 deletions
|
|
@ -41,7 +41,9 @@ fs_visitor::lower_d2x()
|
|||
inst->dst.type != BRW_REGISTER_TYPE_UD)
|
||||
continue;
|
||||
|
||||
if (inst->src[0].type != BRW_REGISTER_TYPE_DF)
|
||||
if (inst->src[0].type != BRW_REGISTER_TYPE_DF &&
|
||||
inst->src[0].type != BRW_REGISTER_TYPE_UQ &&
|
||||
inst->src[0].type != BRW_REGISTER_TYPE_Q)
|
||||
continue;
|
||||
|
||||
assert(inst->dst.file == VGRF);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue