diff options
author | Jason Ekstrand <[email protected]> | 2019-02-07 12:01:18 -0600 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-04-19 19:56:42 +0000 |
commit | e7a1e8f7356922726ec38326b65e81a99d7ff96e (patch) | |
tree | d22dd0c0a33954e33c46bdff2e833ecb528f1592 /src/intel/vulkan/anv_pipeline.c | |
parent | b1a633d9fb077f1e024f5628ec2034d26cf681b7 (diff) |
anv: Add a has_a64_buffer_access to anv_physical_device
This is more descriptive and a bit nicer than checking for gen >= 8 &&
use_softpin everywhere.
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_pipeline.c')
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index e403b07500e..2dd60f2dd2c 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -149,8 +149,7 @@ anv_shader_compile_to_nir(struct anv_device *device, .int64 = pdevice->info.gen >= 8, .min_lod = true, .multiview = true, - .physical_storage_buffer_address = pdevice->info.gen >= 8 && - pdevice->use_softpin, + .physical_storage_buffer_address = pdevice->has_a64_buffer_access, .post_depth_coverage = pdevice->info.gen >= 9, .shader_viewport_index_layer = true, .stencil_export = pdevice->info.gen >= 9, |