Revert "[Tizen] Revert "Support multiple window rendering""
[platform/core/uifw/dali-core.git] / dali / internal / render / gl-resources / gpu-buffer.h
1 #ifndef __DALI_INTERNAL_GPU_BUFFER_H__
2 #define __DALI_INTERNAL_GPU_BUFFER_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/internal/render/gl-resources/context.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 /**
31  * Used to create and update a GPU memory buffer.
32  *
33  * The buffer can be used for storing vertex data, index arrays (indices)
34  * or pixel data (PBO).
35  *
36  * The buffer allows data to be stored in high-performance
37  * graphics memory on the server side and
38  * promotes efficient data transfer.
39  */
40 class GpuBuffer
41 {
42 public:
43
44   /**
45    * Enum to encapsulate the GL buffer type. This is to avoid having to store a whole int for type
46    */
47   enum Target
48   {
49     ARRAY_BUFFER,             ///< GL_ARRAY_BUFFER
50     ELEMENT_ARRAY_BUFFER,     ///< GL_ELEMENT_ARRAY_BUFFER
51     TRANSFORM_FEEDBACK_BUFFER ///< GL_TRANSFORM_FEEDBACK_BUFFER
52   };
53
54   /**
55    * Enum to encapsulate the GL draw mode. This is to avoid having to store a whole int for mode
56    */
57   enum Usage
58   {
59     STREAM_DRAW,  ///< GL_STREAM_DRAW
60     STATIC_DRAW,  ///< GL_STATIC_DRAW
61     DYNAMIC_DRAW, ///< GL_DYNAMIC_DRAW
62   };
63
64 public:
65
66   /**
67    * constructor
68    * @param context drawing context
69    */
70   GpuBuffer( Context& context );
71
72   /**
73    * Destructor, non virtual as no virtual methods or inheritance
74    */
75   ~GpuBuffer();
76
77   /**
78    *
79    * Creates or updates a buffer object and binds it to the target.
80    * @param context The context to bind the the buffer
81    * @param size Specifies the size in bytes of the buffer object's new data store.
82    * @param data pointer to the data to load
83    * @param usage How the buffer will be used
84    * @param target The target buffer to update
85    */
86   void UpdateDataBuffer(Context& context, GLsizeiptr size, const GLvoid *data, Usage usage, Target target);
87
88   /**
89    * Bind the buffer object to the target
90    * Will assert if the buffer size is zero
91    * @param context The context to bind the the buffer
92    * @param target The target buffer to bind
93    */
94   void Bind(Context& context, Target target) const;
95
96   /**
97    * @return true if the GPU buffer is valid, i.e. its created and not empty
98    */
99   bool BufferIsValid() const;
100
101   /**
102    * Get the size of the buffer
103    * @return size
104    */
105   GLsizeiptr GetBufferSize() const
106   {
107     return mSize;
108   }
109
110   /**
111    * Needs to be called when GL context is destroyed
112    */
113   void GlContextDestroyed();
114
115 private:
116
117   /**
118    * Perfoms a bind without checking the size of the buffer
119    * @param bufferId to bind
120    */
121   void BindNoChecks(GLuint bufferId) const;
122
123 private: // Data
124
125   Context&           mContext;             ///< shared context for dali drawing
126   GLsizeiptr         mCapacity;            ///< buffer capacity
127   GLsizeiptr         mSize;                ///< buffer size
128   GLuint             mBufferId;            ///< buffer object name(id)
129
130   bool               mBufferCreated:1;     ///< whether buffer has been created
131
132 };
133
134 } // namespace Internal
135
136 } // namespace Dali
137
138 #endif // __DALI_INTERNAL_GPU_BUFFER_H__