summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2021-03-07 21:21:43 +0000
committerassiduous <assiduous@diligentgraphics.com>2021-03-19 00:38:17 +0000
commit68bb8ce116ce83bc94d2af87563e8dc1c9fab0b4 (patch)
tree0a015869da0e3b1c3c45276be8aca3aabeaa76b0 /Graphics/GraphicsEngine
parentFixed ShaderResourceLayoutTest for non-separable programs (diff)
downloadDiligentCore-68bb8ce116ce83bc94d2af87563e8dc1c9fab0b4.tar.gz
DiligentCore-68bb8ce116ce83bc94d2af87563e8dc1c9fab0b4.zip
Replaced duplicate CacheContentType enums with the common ResourceCacheContentType
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/CMakeLists.txt1
-rw-r--r--Graphics/GraphicsEngine/include/ShaderResourceCacheCommon.hpp48
2 files changed, 49 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngine/CMakeLists.txt b/Graphics/GraphicsEngine/CMakeLists.txt
index 0cc1e740..0b255049 100644
--- a/Graphics/GraphicsEngine/CMakeLists.txt
+++ b/Graphics/GraphicsEngine/CMakeLists.txt
@@ -23,6 +23,7 @@ set(INCLUDE
include/SamplerBase.hpp
include/ShaderBase.hpp
include/ShaderResourceBindingBase.hpp
+ include/ShaderResourceCacheCommon.hpp
include/ShaderResourceVariableBase.hpp
include/StateObjectsRegistry.hpp
include/SwapChainBase.hpp
diff --git a/Graphics/GraphicsEngine/include/ShaderResourceCacheCommon.hpp b/Graphics/GraphicsEngine/include/ShaderResourceCacheCommon.hpp
new file mode 100644
index 00000000..7618669d
--- /dev/null
+++ b/Graphics/GraphicsEngine/include/ShaderResourceCacheCommon.hpp
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2019-2021 Diligent Graphics LLC
+ * Copyright 2015-2019 Egor Yusov
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * In no event and under no legal theory, whether in tort (including negligence),
+ * contract, or otherwise, unless required by applicable law (such as deliberate
+ * and grossly negligent acts) or agreed to in writing, shall any Contributor be
+ * liable for any damages, including any direct, indirect, special, incidental,
+ * or consequential damages of any character arising as a result of this License or
+ * out of the use or inability to use the software (including but not limited to damages
+ * for loss of goodwill, work stoppage, computer failure or malfunction, or any and
+ * all other commercial damages or losses), even if such Contributor has been advised
+ * of the possibility of such damages.
+ */
+
+#pragma once
+
+/// \file
+/// Definition of the common share resource cache constants
+
+#include "BasicTypes.h"
+
+namespace Diligent
+{
+
+/// The type of the content that is stored in the shader resource cache.
+enum class ResourceCacheContentType : Uint8
+{
+ /// Static resources of a pipeline resource signature.
+ Signature,
+
+ /// Resources of a shader resource binding.
+ SRB
+};
+
+} // namespace Diligent