[Mesa-stable] [Mesa-dev] [PATCH] anv: Pay attention to VK_ACCESS_MEMORY_(READ|WRITE)_BIT
Lionel Landwerlin
lionel.g.landwerlin at intel.com
Fri Jul 20 15:37:23 UTC 2018
On 20/07/18 11:44, Alex Smith wrote:
> According to the spec, these should apply to all read/write access
> types (so would be equivalent to specifying all other access types
> individually). Currently, they were doing nothing.
>
> Signed-off-by: Alex Smith <asmith at feralinteractive.com>
> Cc: mesa-stable at lists.freedesktop.org
> ---
> src/intel/vulkan/anv_private.h | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
> index cec2842792..775bacaff2 100644
> --- a/src/intel/vulkan/anv_private.h
> +++ b/src/intel/vulkan/anv_private.h
> @@ -1731,6 +1731,9 @@ anv_pipe_flush_bits_for_access_flags(VkAccessFlags flags)
> pipe_bits |= ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT;
> pipe_bits |= ANV_PIPE_DEPTH_CACHE_FLUSH_BIT;
> break;
> + case VK_ACCESS_MEMORY_WRITE_BIT:
> + pipe_bits |= ANV_PIPE_FLUSH_BITS;
> + break;
> default:
> break; /* Nothing to do */
> }
> @@ -1761,6 +1764,9 @@ anv_pipe_invalidate_bits_for_access_flags(VkAccessFlags flags)
> case VK_ACCESS_TRANSFER_READ_BIT:
> pipe_bits |= ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT;
> break;
> + case VK_ACCESS_MEMORY_READ_BIT:
> + pipe_bits |= ANV_PIPE_INVALIDATE_BITS;
> + break;
I know this function is a bit oddly named for that, but with this part
of the spec regarding VK_ACCESS_MEMORY_WRITE_BIT :
"
*
When included in a destination access mask, makes all available
writes visible to all future write accesses on entities known to the
Vulkan device.
"
I would also add :
case VK_ACCESS_MEMORY_WRITE_BIT:
pipe_bits |= ANV_PIPE_FLUSH_BITS;
break;
Does that sound fair?
-
Lionel
> default:
> break; /* Nothing to do */
> }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/mesa-stable/attachments/20180720/ac302dd4/attachment.html>
More information about the mesa-stable
mailing list