mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
brw: cleanup int64 option set
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37447>
This commit is contained in:
parent
168704c2fe
commit
bbf5bc8632
1 changed files with 2 additions and 2 deletions
|
|
@ -125,7 +125,8 @@ brw_compiler_create(void *mem_ctx, const struct intel_device_info *devinfo)
|
|||
nir_lower_bit_count64 |
|
||||
nir_lower_iadd3_64 |
|
||||
nir_lower_bitfield_extract64 |
|
||||
nir_lower_bitfield_reverse64;
|
||||
nir_lower_bitfield_reverse64 |
|
||||
nir_lower_usub_sat64;
|
||||
nir_lower_doubles_options fp64_options =
|
||||
nir_lower_drcp |
|
||||
nir_lower_dsqrt |
|
||||
|
|
@ -163,7 +164,6 @@ brw_compiler_create(void *mem_ctx, const struct intel_device_info *devinfo)
|
|||
|
||||
struct nir_shader_compiler_options *nir_options = &compiler->nir_options[0];
|
||||
*nir_options = brw_scalar_nir_options;
|
||||
int64_options |= nir_lower_usub_sat64;
|
||||
|
||||
/* Gfx11 loses LRP. */
|
||||
nir_options->lower_flrp32 = devinfo->ver >= 11;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue