mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
i965/fs: Remove BRW_REGISTER_TYPE_HF assert at get_exec_type
Note that we don't remove the assert at i965/vec4. At this point half float support is only for the scalar backend. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
75a88d8567
commit
a05b6f25bf
1 changed files with 0 additions and 3 deletions
|
|
@ -465,9 +465,6 @@ get_exec_type(const fs_inst *inst)
|
|||
if (exec_type == BRW_REGISTER_TYPE_B)
|
||||
exec_type = inst->dst.type;
|
||||
|
||||
/* TODO: We need to handle half-float conversions. */
|
||||
assert(exec_type != BRW_REGISTER_TYPE_HF ||
|
||||
inst->dst.type == BRW_REGISTER_TYPE_HF);
|
||||
assert(exec_type != BRW_REGISTER_TYPE_B);
|
||||
|
||||
return exec_type;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue