diff options
author | Jason Ekstrand <[email protected]> | 2017-02-20 11:04:12 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-02-21 12:26:35 -0800 |
commit | f31ed6d0cd3c6b66304bb060a0c204ecf8621e6a (patch) | |
tree | 14a3f2ba7984256b209405d0a43993795b62358e /src/intel/vulkan/anv_image.c | |
parent | f408971deb7821cc140f1d373a104c2e1cb24eeb (diff) |
anv: Take a device parameter in anv_state_flush
This allows the helper to check for llc instead of having to do it
manually at all the call sites.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_image.c')
-rw-r--r-- | src/intel/vulkan/anv_image.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index c0142c80c4d..e2f7ca340fd 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -574,8 +574,7 @@ anv_CreateImageView(VkDevice _device, .aux_usage = surf_usage, .mocs = device->default_mocs); - if (!device->info.has_llc) - anv_state_flush(iview->sampler_surface_state); + anv_state_flush(device, iview->sampler_surface_state); } else { iview->sampler_surface_state.alloc_size = 0; } @@ -626,10 +625,8 @@ anv_CreateImageView(VkDevice _device, &iview->storage_image_param, &surface->isl, &iview->isl); - if (!device->info.has_llc) { - anv_state_flush(iview->storage_surface_state); - anv_state_flush(iview->writeonly_storage_surface_state); - } + anv_state_flush(device, iview->storage_surface_state); + anv_state_flush(device, iview->writeonly_storage_surface_state); } else { iview->storage_surface_state.alloc_size = 0; iview->writeonly_storage_surface_state.alloc_size = 0; |