[3.0] Bug fix in Transform manager, improve performance
[platform/core/uifw/dali-core.git] / dali / internal / render / data-providers / uniform-name-cache.h
1 #ifndef DALI_INTERNAL_UNIFORM_NAME_CACHE_H
2 #define DALI_INTERNAL_UNIFORM_NAME_CACHE_H
3
4 /*
5  * Copyright (c) 2015 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 // EXTERNAL INCLUDES
21 #include <string>
22
23 // INTERNAL INCLUDES
24 #include <dali/devel-api/common/owner-container.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace Render
33 {
34
35 /**
36  * This class maps uniform names to unique indices that can be used to cache the GL uniform
37  * index values in programs and only do the costly string lookup once
38  */
39 class UniformNameCache
40 {
41 public:
42
43   /**
44    * Constructor
45    */
46   UniformNameCache();
47
48   /**
49    * Destructor
50    */
51   ~UniformNameCache();
52
53   /**
54    * This method can be used to query a cache for the unique index for a sampler uniform
55    * @param uniformName to get the index for
56    * @return a unique index for this sampler uniform
57    */
58   int32_t GetSamplerUniformUniqueIndex( const std::string& uniformName );
59
60 private: // Data
61
62   struct UniformEntry
63   {
64     UniformEntry( const std::string& name, std::size_t hash )
65     : uniformName( name ),
66       nameHash( hash )
67     { }
68     std::string uniformName;
69     std::size_t nameHash;
70   };
71
72   OwnerContainer< UniformEntry* > mSamplerUniformCache;
73
74 };
75
76 } // namespace Render
77
78 } // namespace Internal
79
80 } // namespace Dali
81
82 #endif // DALI_INTERNAL_UNIFORM_NAME_CACHE_H