nak: Handle OpFRnd in is_fp64()
Fixes: b27fc463da ("nak: Record and set DOES_FP64 in the SPH")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34622>
This commit is contained in:
@@ -6676,6 +6676,9 @@ impl Op {
|
||||
Op::F2F(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
|
||||
Op::F2I(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
|
||||
Op::I2F(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
|
||||
Op::FRnd(op) => {
|
||||
op.src_type.bits() == 64 || op.dst_type.bits() == 64
|
||||
}
|
||||
_ => false,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user