diff options
author | Christian Gmeiner <[email protected]> | 2019-05-05 11:35:41 +0200 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2019-05-07 07:35:52 +0200 |
commit | 4e110eca42ac2c56c5763a1f502e7c80db67e064 (patch) | |
tree | 0eb3b8dc9c3e5bdb770884761adeae7fe563b9e3 /src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | |
parent | 050b934a24072df862a1fdad424c8f33379e8e26 (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/gallium/drivers/nouveau/nvc0/nvc0_screen.c')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 79224ac99a7..fe80c7e9103 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -941,7 +941,6 @@ static const nir_shader_compiler_options nir_options = { .lower_extract_byte = true, .lower_extract_word = true, .lower_all_io_to_temps = false, - .native_integers = true, .vertex_id_zero_based = false, .lower_base_vertex = false, .lower_helper_invocation = false, |