New parameter for FrameBufferImage creation
[platform/core/uifw/dali-core.git] / dali / internal / update / resources / resource-manager-declarations.h
1 #ifndef __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_H__
2 #define __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_H__
3
4 /*
5  * Copyright (c) 2014 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/integration-api/resource-cache.h>
23 #include <dali/internal/update/common/double-buffered.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 typedef Integration::ResourceId ResourceId;
32
33 /**
34  * Post processing required on the resource after the resource has been modified by the render thread
35  * Should only be handled by update thread
36  */
37 struct ResourcePostProcessRequest
38 {
39   enum PostProcess
40   {
41     UPLOADED,
42     SAVE,
43     DELETED
44   };
45
46   ResourceId   id;
47   PostProcess  postProcess;
48
49   ResourcePostProcessRequest( ResourceId anId, PostProcess aPostProcess )
50   : id(anId), postProcess(aPostProcess)
51   {
52   }
53 };
54
55 typedef SceneGraph::DoubleBuffered<std::vector< ResourcePostProcessRequest> > ResourcePostProcessList;
56
57 } // Internal
58 } // Dali
59
60 #endif // __DALI_INTERNAL_RESOURCE_MANAGER_DECLARATIONS_H__