[Vulkan] graphics controller, multiple pipelines
[platform/core/uifw/dali-core.git] / dali / graphics / vulkan / vulkan-pipeline-cache.h
1 #ifndef DALI_GRAPHICS_VULKAN_PIPELINE_CACHE_H
2 #define DALI_GRAPHICS_VULKAN_PIPELINE_CACHE_H
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/graphics/vulkan/vulkan-types.h>
23
24 namespace Dali
25 {
26 namespace Graphics
27 {
28 namespace Vulkan
29 {
30 class Graphics;
31
32 struct PipelineDescription
33 {
34   ShaderRef vertexShader;
35   ShaderRef fragmentShader;
36
37   bool operator==(const PipelineDescription& description) const
38   {
39     return (vertexShader == description.vertexShader) &&
40            (fragmentShader == description.fragmentShader);
41   }
42
43   std::vector<vk::DescriptorSetLayout> descriptorSetLayouts;
44 };
45
46 class PipelineCache
47 {
48 public:
49   PipelineCache() = default;
50
51   PipelineCache( Graphics& graphics );
52
53   ~PipelineCache();
54
55   PipelineRef GetPipeline( const PipelineDescription& desc ) const;
56
57   bool AddPipeline( PipelineRef pipeline, const PipelineDescription& desc );
58
59   std::vector<vk::DescriptorSetLayout> GetDescriptorSetLayouts( const PipelineRef& pipeline ) const;
60
61 private:
62   struct Impl;
63   std::unique_ptr<Impl> mImpl;
64 };
65 } // namespace Vulkan
66 } // namespace Graphics
67 } // namespace Dali
68 #endif // DALI_GRAPHICS_VULKAN_PIPELINE_CACHE_H