From 68bb8ce116ce83bc94d2af87563e8dc1c9fab0b4 Mon Sep 17 00:00:00 2001 From: assiduous Date: Sun, 7 Mar 2021 13:21:43 -0800 Subject: Replaced duplicate CacheContentType enums with the common ResourceCacheContentType --- Graphics/GraphicsEngine/CMakeLists.txt | 1 + .../include/ShaderResourceCacheCommon.hpp | 48 ++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 Graphics/GraphicsEngine/include/ShaderResourceCacheCommon.hpp (limited to 'Graphics/GraphicsEngine') 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 -- cgit v1.2.3