diff options
author | Jonathan Marek <[email protected]> | 2019-09-05 11:18:45 -0400 |
---|---|---|
committer | Jonathan Marek <[email protected]> | 2019-09-06 02:24:29 +0000 |
commit | c5e6961a584f71bd861c9203ccfd798bcd72a1c1 (patch) | |
tree | 928eea1a239ed888006ef0bd5a71d8e96e797a2e /src/gallium/drivers/freedreno | |
parent | 22799787b5bd593fe7b7d9d0ef742ff599998d80 (diff) |
freedreno/a2xx: ir2: set lower_fdph
The fdph opcode is not supported.
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno')
-rw-r--r-- | src/gallium/drivers/freedreno/a2xx/ir2_nir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/ir2_nir.c b/src/gallium/drivers/freedreno/a2xx/ir2_nir.c index c08566ab0ce..31c9add3b92 100644 --- a/src/gallium/drivers/freedreno/a2xx/ir2_nir.c +++ b/src/gallium/drivers/freedreno/a2xx/ir2_nir.c @@ -42,6 +42,7 @@ static const nir_shader_compiler_options options = { .lower_bitops = true, .lower_rotate = true, .lower_vector_cmp = true, + .lower_fdph = true, }; const nir_shader_compiler_options * |