[dali_2.3.37] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / internal / render / shaders / program-cache.h
1 #ifndef DALI_INTERNAL_PROGRAM_CACHE_H
2 #define DALI_INTERNAL_PROGRAM_CACHE_H
3
4 /*
5  * Copyright (c) 2021 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/internal/common/shader-data.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28 class Program;
29
30 /**
31  * This class is interface for caching Program objects
32  */
33 class ProgramCache
34 {
35 public:
36   /**
37    * Constructor
38    */
39   ProgramCache() = default;
40
41   /**
42    * Destructor, virtual as this is an interface
43    */
44   virtual ~ProgramCache() = default;
45
46 public: // API
47   /**
48    * Get the program from cache with hash
49    * @param shaderHash to use
50    * @return program
51    */
52   virtual Program* GetProgram(size_t shaderHash) = 0;
53
54   /**
55    * Add a program to cache
56    * @param shaderHash of the program
57    * @param program to add
58    */
59   virtual void AddProgram(size_t shaderHash, Program* program) = 0;
60
61   ProgramCache(const ProgramCache& rhs) = delete;
62   ProgramCache& operator=(const ProgramCache& rhs) = delete;
63 };
64
65 } // namespace Internal
66
67 } // namespace Dali
68
69 #endif // DALI_INTERNAL_PROGRAM_CACHE_H