From d94e3633dc7b0a9f44b7beaa0a66c5c8d6aa1366 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sat, 15 Feb 2025 13:34:03 +0100 Subject: [PATCH] [dxvk] Introduce concept of order-invariant atomic stores --- src/dxvk/dxvk_pipelayout.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/dxvk/dxvk_pipelayout.h b/src/dxvk/dxvk_pipelayout.h index 5fb05c6b2..6271be481 100644 --- a/src/dxvk/dxvk_pipelayout.h +++ b/src/dxvk/dxvk_pipelayout.h @@ -11,6 +11,24 @@ namespace dxvk { class DxvkDevice; + /** + * \brief Order-invariant atomic access operation + * + * Information used to optimize barriers when a resource + * is accessed exlusively via order-invariant stores. + */ + enum class DxvkAccessOp : uint32_t { + None = 0, + Or = 1, + And = 2, + Xor = 3, + Add = 4, + IMin = 5, + IMax = 6, + UMin = 7, + UMax = 8, + }; + /** * \brief Descriptor set indices */ @@ -37,6 +55,7 @@ namespace dxvk { VkShaderStageFlagBits stage; ///< Shader stage VkAccessFlags access; ///< Access mask for the resource VkBool32 uboSet; ///< Whether to include this in the UBO set + DxvkAccessOp accessOp; ///< Order-invariant store type, if any /** * \brief Computes descriptor set index for the given binding