mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-08 12:10:35 +01:00
freedreno/ir3: Enabling lowering 16-bit flrp
Reviewed-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
35124b0311
commit
37f5395783
1 changed files with 2 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ static void ir3_setup_const_state(struct ir3_shader *shader, nir_shader *nir);
|
|||
static const nir_shader_compiler_options options = {
|
||||
.lower_fpow = true,
|
||||
.lower_scmp = true,
|
||||
.lower_flrp16 = true,
|
||||
.lower_flrp32 = true,
|
||||
.lower_flrp64 = true,
|
||||
.lower_ffract = true,
|
||||
|
|
@ -64,6 +65,7 @@ static const nir_shader_compiler_options options = {
|
|||
static const nir_shader_compiler_options options_a6xx = {
|
||||
.lower_fpow = true,
|
||||
.lower_scmp = true,
|
||||
.lower_flrp16 = true,
|
||||
.lower_flrp32 = true,
|
||||
.lower_flrp64 = true,
|
||||
.lower_ffract = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue