summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorazhirnov <zh1dron@gmail.com>2020-11-18 02:01:18 +0000
committerazhirnov <zh1dron@gmail.com>2020-11-18 02:01:18 +0000
commita8d6acd496404dc5b01df997ad9d07504d6ccf1b (patch)
tree47bde1f0dad761bc82299fb7d3dee6c5a6af5e8b /Graphics/GraphicsEngine
parentMerge branch 'master' into ray_tracing_2 (diff)
downloadDiligentCore-a8d6acd496404dc5b01df997ad9d07504d6ccf1b.tar.gz
DiligentCore-a8d6acd496404dc5b01df997ad9d07504d6ccf1b.zip
Removed SWAP_CHAIN_USAGE_UNORDERED_ACCESS, fixed shader group checks
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/GraphicsTypes.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Graphics/GraphicsEngine/interface/GraphicsTypes.h b/Graphics/GraphicsEngine/interface/GraphicsTypes.h
index 08fc3571..736f7b3c 100644
--- a/Graphics/GraphicsEngine/interface/GraphicsTypes.h
+++ b/Graphics/GraphicsEngine/interface/GraphicsTypes.h
@@ -1261,12 +1261,8 @@ DILIGENT_TYPED_ENUM(SWAP_CHAIN_USAGE_FLAGS, Uint32)
/// Swap chain images can be used as source of copy operation
SWAP_CHAIN_USAGE_COPY_SOURCE = 0x04L,
-
- /// Swap chain images will define an unordered access view that will be used
- /// for unordered read/write operations from the shaders
- SWAP_CHAIN_USAGE_UNORDERED_ACCESS = 0x08L,
- SWAP_CHAIN_USAGE_LAST = SWAP_CHAIN_USAGE_UNORDERED_ACCESS,
+ SWAP_CHAIN_USAGE_LAST = SWAP_CHAIN_USAGE_COPY_SOURCE,
};
DEFINE_FLAG_ENUM_OPERATORS(SWAP_CHAIN_USAGE_FLAGS)