summaryrefslogtreecommitdiffstats
path: root/src/freedreno
diff options
context:
space:
mode:
authorChristian Gmeiner <[email protected]>2019-05-05 11:35:41 +0200
committerChristian Gmeiner <[email protected]>2019-05-07 07:35:52 +0200
commit4e110eca42ac2c56c5763a1f502e7c80db67e064 (patch)
tree0eb3b8dc9c3e5bdb770884761adeae7fe563b9e3 /src/freedreno
parent050b934a24072df862a1fdad424c8f33379e8e26 (diff)
nir: nir_shader_compiler_options: drop native_integers
Driver which do not support native integers should use a lowering pass to go from integers to floats. Signed-off-by: Christian Gmeiner <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/freedreno')
-rw-r--r--src/freedreno/ir3/ir3_nir.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/freedreno/ir3/ir3_nir.c b/src/freedreno/ir3/ir3_nir.c
index dffcf5f5ab7..3bc22fe5be5 100644
--- a/src/freedreno/ir3/ir3_nir.c
+++ b/src/freedreno/ir3/ir3_nir.c
@@ -45,7 +45,6 @@ static const nir_shader_compiler_options options = {
.lower_uadd_carry = true,
.lower_mul_high = true,
.fuse_ffma = true,
- .native_integers = true,
.vertex_id_zero_based = true,
.lower_extract_byte = true,
.lower_extract_word = true,
@@ -72,7 +71,6 @@ static const nir_shader_compiler_options options_a6xx = {
.lower_uadd_carry = true,
.lower_mul_high = true,
.fuse_ffma = true,
- .native_integers = true,
.vertex_id_zero_based = false,
.lower_extract_byte = true,
.lower_extract_word = true,