Removed unnecessary for loop
[platform/core/uifw/dali-core.git] / dali / internal / render / gl-resources / bitmap-texture.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/internal/render/gl-resources/bitmap-texture.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/internal/render/common/vertex.h>
24 #include <dali/internal/render/common/performance-monitor.h>
25 #include <dali/internal/render/gl-resources/context.h>
26 #include <dali/internal/render/gl-resources/texture-units.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 BitmapTexture::BitmapTexture(
35   Integration::Bitmap* const bitmap,
36   const Integration::Bitmap::PackedPixelsProfile * const bitmapPackedPixelsProfile,
37   Context& context,
38   ResourcePolicy::Discardable policy)
39 : Texture( context,
40            bitmapPackedPixelsProfile->GetBufferWidth(),
41            bitmapPackedPixelsProfile->GetBufferHeight(),
42            bitmap->GetImageWidth(),
43            bitmap->GetImageHeight(),
44            bitmap->GetPixelFormat()),
45   mBitmap(bitmap),
46   mClearPixels(false),
47   mDiscardPolicy(policy)
48 {
49   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
50   DALI_LOG_SET_OBJECT_STRING(this, DALI_LOG_GET_OBJECT_STRING(bitmap));
51 }
52
53 BitmapTexture::BitmapTexture(
54   unsigned int width,
55   unsigned int height,
56   Pixel::Format pixelFormat,
57   bool clearPixels,
58   Context& context,
59   ResourcePolicy::Discardable policy)
60 : Texture( context,
61            width, height,
62            width, height,
63            pixelFormat),
64   mBitmap(NULL),
65   mClearPixels(clearPixels),
66   mDiscardPolicy(policy)
67 {
68   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
69 }
70
71 BitmapTexture::~BitmapTexture()
72 {
73   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
74
75   // GlCleanup() should already have been called by TextureCache ensuring the resource is destroyed
76   // on the render thread. (And avoiding a potentially problematic virtual call in the destructor)
77 }
78
79 void BitmapTexture::UploadBitmapArray( const BitmapUploadArray& bitmapArray )
80 {
81   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
82
83   if( mId == 0 )
84   {
85     CreateGlTexture();
86   }
87
88   mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
89   mContext.Bind2dTexture(mId);
90   mContext.PixelStorei(GL_UNPACK_ALIGNMENT, 1); // We always use tightly packed data
91
92   GLenum pixelFormat   = GL_RGBA;
93   GLenum pixelDataType = GL_UNSIGNED_BYTE;
94
95   Integration::ConvertToGlFormat(mPixelFormat, pixelDataType, pixelFormat);
96
97   // go through each bitmap uploading it
98
99   for( BitmapUploadArray::const_iterator iter =  bitmapArray.begin(), endIter = bitmapArray.end(); iter != endIter ; ++iter)
100   {
101     const BitmapUpload& bitmapItem((*iter));
102
103     DALI_ASSERT_ALWAYS(bitmapItem.mPixelData);
104
105     const unsigned char* pixels = bitmapItem.mPixelData;
106
107     DALI_ASSERT_DEBUG( (pixels!=NULL) && "bitmap has no data \n");
108
109     unsigned int bitmapWidth(bitmapItem.mWidth);
110     unsigned int bitmapHeight(bitmapItem.mHeight);
111
112     DALI_LOG_INFO(Debug::Filter::gImage, Debug::General, "upload bitmap to texture :%d y:%d w:%d h:%d\n",
113                             bitmapItem.mXpos,
114                             bitmapItem.mYpos,
115                             bitmapWidth,
116                             bitmapHeight);
117
118     mContext.TexSubImage2D(GL_TEXTURE_2D,
119                            0,                   /* mip map level */
120                            bitmapItem.mXpos,    /* X pos */
121                            bitmapItem.mYpos,    /* Y pos */
122                            bitmapWidth,         /* width */
123                            bitmapHeight,        /* height */
124                            pixelFormat,         /* our bitmap format (should match internal format) */
125                            pixelDataType,       /* pixel data type */
126                            pixels);             /* texture data */
127
128     if( BitmapUpload::DISCARD_PIXEL_DATA == bitmapItem.mDiscard)
129     {
130       delete [] bitmapItem.mPixelData;
131     }
132   }
133 }
134
135 bool BitmapTexture::HasAlphaChannel() const
136 {
137   return Pixel::HasAlpha(mPixelFormat);
138 }
139
140 bool BitmapTexture::IsFullyOpaque() const
141 {
142   if( mBitmap )
143   {
144     return mBitmap->IsFullyOpaque();
145   }
146   else
147   {
148     return ! HasAlphaChannel(); // Todo: amalgamate updated bitmap's IsFullyOpaque()
149   }
150 }
151
152 // Bitmap buffer has been changed. Upload changes to GPU.
153 void BitmapTexture::AreaUpdated( const RectArea& updateArea, const unsigned char* pixels )
154 {
155   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
156   DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::Verbose, "BitmapTexture::AreaUpdated()\n");
157
158   GLenum pixelFormat   = GL_RGBA;
159   GLenum pixelDataType = GL_UNSIGNED_BYTE;
160   Integration::ConvertToGlFormat(mPixelFormat, pixelDataType, pixelFormat);
161
162   mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
163
164   mContext.Bind2dTexture(mId);
165
166   if( ! updateArea.IsEmpty() )
167   {
168     mContext.PixelStorei( GL_UNPACK_ALIGNMENT, 1 ); // We always use tightly packed data
169     DALI_LOG_INFO( Debug::Filter::gImage, Debug::General, "Update x:%d y:%d w:%d h:%d\n",
170                    updateArea.x, updateArea.y, updateArea.width ,updateArea.height );
171
172     // TODO: obtain pitch of source image, obtain pixel depth of source image.
173     const unsigned int pitchPixels = mImageWidth;
174     const unsigned int pixelDepth = sizeof(unsigned int);
175
176     // If the width of the source update area is the same as the pitch, then can
177     // copy the contents in a single contiguous TexSubImage call.
178     if(updateArea.x == 0 && updateArea.width == pitchPixels)
179     {
180       pixels += updateArea.y * pitchPixels * pixelDepth;
181       mContext.TexSubImage2D( GL_TEXTURE_2D,0, updateArea.x, updateArea.y,
182                               updateArea.width, updateArea.height,
183                               pixelFormat, pixelDataType, pixels );
184     }
185     else
186     {
187       // Otherwise the source buffer needs to be copied line at a time, as OpenGL ES
188       // does not support source strides. (no GL_UNPACK_ROW_LENGTH supported)
189       unsigned int yBottom = updateArea.y + updateArea.height;
190       pixels += (updateArea.y * pitchPixels + updateArea.x) * pixelDepth;
191
192       for(unsigned int y = updateArea.y; y < yBottom; y++)
193       {
194         mContext.TexSubImage2D( GL_TEXTURE_2D,0, updateArea.x, y,
195                                 updateArea.width, 1,
196                                 pixelFormat, pixelDataType, pixels );
197         pixels += pitchPixels * pixelDepth;
198       }
199     }
200
201     INCREASE_BY( PerformanceMonitor::TEXTURE_DATA_UPLOADED,
202                  updateArea.Area()* GetBytesPerPixel( mPixelFormat ));
203   }
204 }
205
206 void BitmapTexture::AssignBitmap( bool generateTexture, const unsigned char* pixels )
207 {
208   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
209   DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::Verbose, "BitmapTexture::AssignBitmap()\n");
210
211   GLenum pixelFormat = GL_RGBA;
212   GLenum pixelDataType = GL_UNSIGNED_BYTE;
213
214   if( generateTexture )
215   {
216     mContext.GenTextures(1, &mId);
217   }
218   DALI_ASSERT_DEBUG( mId != 0 );
219
220   mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
221   mContext.Bind2dTexture(mId);
222   Integration::ConvertToGlFormat(mPixelFormat, pixelDataType, pixelFormat);
223
224   mContext.PixelStorei(GL_UNPACK_ALIGNMENT, 1); // We always use tightly packed data
225   mContext.TexImage2D(GL_TEXTURE_2D, 0, pixelFormat, mWidth, mHeight, 0, pixelFormat, pixelDataType, pixels);
226   mContext.TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
227   mContext.TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
228
229   INCREASE_BY( PerformanceMonitor::TEXTURE_DATA_UPLOADED, GetBytesPerPixel(mPixelFormat) * mWidth * mHeight );
230 }
231
232 void BitmapTexture::Update( Integration::Bitmap* bitmap )
233 {
234   DALI_LOG_INFO( Debug::Filter::gGLResource, Debug::General, "BitmapTexture::Update(bitmap:%p )\n", bitmap );
235   DALI_ASSERT_DEBUG( bitmap != 0 );
236   if( !bitmap )
237   {
238     DALI_LOG_ERROR( "Passed a null bitmap to update this bitmap texture." );
239     return;
240   }
241
242   // Only Packed-pixel bitmaps are ever associated with BitmapTextures, so we should never be passed any other kind:
243   const Integration::Bitmap::PackedPixelsProfile * const bitmapPackedPixels = bitmap->GetPackedPixelsProfile();
244   DALI_ASSERT_DEBUG(bitmapPackedPixels);
245   if( !bitmapPackedPixels )
246   {
247     ///! This should never happen.
248     DALI_LOG_ERROR("Passed an incompatible bitmap type to update this bitmap texture.");
249     return;
250   }
251   mBitmap = bitmap;
252
253   const unsigned char* pixels = mBitmap->GetBuffer();
254
255   // We should never have null pixel data here - resource manager has deliberately loaded/reloaded data
256
257   DALI_ASSERT_DEBUG( pixels != NULL );
258
259   if( NULL == pixels )
260   {
261     DALI_LOG_ERROR("BitmapTexture::Upload() - Bitmap has no pixel data.\n");
262   }
263   else if( mId != 0 )
264   {
265     if( mImageWidth == mBitmap->GetImageWidth() &&
266         mImageHeight == mBitmap->GetImageHeight() &&
267         mWidth  == bitmapPackedPixels->GetBufferWidth() &&
268         mHeight == bitmapPackedPixels->GetBufferHeight() &&
269         mPixelFormat == mBitmap->GetPixelFormat() ) // and size hasn't changed
270     {
271       RectArea area(0, 0, mImageWidth, mImageHeight);  // just update whole texture
272       AreaUpdated( area, pixels );
273       DiscardBitmapBuffer();
274     }
275     else // Otherwise, reload the pixel data
276     {
277       mImageWidth  = mBitmap->GetImageWidth();
278       mImageHeight = mBitmap->GetImageHeight();
279       mWidth       = bitmapPackedPixels->GetBufferWidth();
280       mHeight      = bitmapPackedPixels->GetBufferHeight();
281       mPixelFormat = mBitmap->GetPixelFormat();
282
283       AssignBitmap( false, pixels );
284     }
285   }
286 }
287
288 void BitmapTexture::Update( Integration::Bitmap* srcBitmap, std::size_t xOffset, std::size_t yOffset )
289 {
290   if( NULL != srcBitmap )
291   {
292     GLenum pixelFormat   = GL_RGBA;
293     GLenum pixelDataType = GL_UNSIGNED_BYTE;
294     Integration::ConvertToGlFormat( mPixelFormat, pixelDataType, pixelFormat );
295
296     if( !mId )
297     {
298       mContext.GenTextures( 1, &mId );
299
300       mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
301       mContext.Bind2dTexture( mId );
302       mContext.PixelStorei( GL_UNPACK_ALIGNMENT, 1 );
303
304       mContext.TexImage2D( GL_TEXTURE_2D, 0, pixelFormat, mWidth, mHeight, 0, pixelFormat, pixelDataType, NULL );
305       mContext.TexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE );
306       mContext.TexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE );
307     }
308     else
309     {
310       mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
311       mContext.Bind2dTexture( mId );
312       mContext.PixelStorei( GL_UNPACK_ALIGNMENT, 1 );
313     }
314
315     mContext.TexSubImage2D( GL_TEXTURE_2D, 0,
316                             xOffset, yOffset,
317                             srcBitmap->GetImageWidth(), srcBitmap->GetImageHeight(),
318                             pixelFormat, pixelDataType, srcBitmap->GetBuffer() );
319   }
320 }
321
322 void BitmapTexture::UpdateArea( const RectArea& updateArea )
323 {
324   DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::General, "BitmapTexture::UpdateArea()\n");
325
326   if( mBitmap != 0 )
327   {
328     const unsigned char* pixels = mBitmap->GetBuffer();
329
330     // Pixel data could be null if we've uploaded to GL and discarded the data.
331
332     if( NULL != pixels )
333     {
334       if( mId ) // If the texture is already bound
335       {
336         if( updateArea.IsEmpty() )
337         {
338           RectArea area;
339           area.x = 0;
340           area.y = 0;
341           area.width = mImageWidth;
342           area.height = mImageHeight;
343           AreaUpdated( area, pixels );
344         }
345         else
346         {
347           AreaUpdated( updateArea, pixels );
348         }
349       }
350     }
351   }
352 }
353
354 void BitmapTexture::ClearAreas( const BitmapClearArray& areaArray, std::size_t blockSize, uint32_t color )
355 {
356   if(mId > 0)
357   {
358     DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
359     DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::Verbose, "BitmapTexture::AreaUpdated()\n");
360
361     GLenum pixelFormat   = GL_RGBA;
362     GLenum pixelDataType = GL_UNSIGNED_BYTE;
363     Integration::ConvertToGlFormat(mPixelFormat, pixelDataType, pixelFormat);
364
365     mContext.ActiveTexture( TEXTURE_UNIT_UPLOAD );
366     mContext.Bind2dTexture(mId);
367
368     size_t numPixels = blockSize*blockSize;
369     size_t bytesPerPixel = Pixel::GetBytesPerPixel(mPixelFormat);
370     char* clearPixels = (char*)malloc(numPixels * bytesPerPixel);
371
372     for(size_t i=0; i<numPixels; i++)
373     {
374       memcpy(&clearPixels[i*bytesPerPixel], &color, bytesPerPixel);
375     }
376
377     for( BitmapClearArray::const_iterator iter =  areaArray.begin(), endIter = areaArray.end(); iter != endIter ; ++iter)
378     {
379       const Vector2& clearPos((*iter));
380
381       mContext.PixelStorei( GL_UNPACK_ALIGNMENT, 1 ); // We always use tightly packed data
382       DALI_LOG_INFO( Debug::Filter::gImage, Debug::General, "Update x:%0.2f y:%0.2f w:%d h:%d\n",
383                      clearPos.x, clearPos.y, blockSize, blockSize );
384
385       mContext.TexSubImage2D(GL_TEXTURE_2D,
386                              0,
387                              clearPos.x,
388                              clearPos.y,
389                              blockSize,
390                              blockSize,
391                              pixelFormat,         /* our bitmap format (should match internal format) */
392                              pixelDataType,       /* pixel data type */
393                              clearPixels);        /* texture data */
394
395       INCREASE_BY( PerformanceMonitor::TEXTURE_DATA_UPLOADED, numPixels * bytesPerPixel );
396     }
397     free(clearPixels);
398   }
399 }
400
401 bool BitmapTexture::UpdateOnCreate()
402 {
403   return true;
404 }
405
406 bool BitmapTexture::CreateGlTexture()
407 {
408   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
409   DALI_LOG_INFO(Debug::Filter::gImage, Debug::Verbose, "BitmapTexture::CreateGlTexture() Bitmap: %s\n", DALI_LOG_GET_OBJECT_C_STR(this));
410
411   if( mBitmap )
412   {
413     const unsigned char* pixels = mBitmap->GetBuffer();
414
415     // pixel data could be NULL here if we've had a context loss and we previously discarded
416     // the pixel data on the previous upload. If it is null, then we shouldn't generate a
417     // new GL Texture; leaving mId as zero. Eventually, the bitmap will get reloaded,
418     // and pixels will become non-null.
419
420     if( NULL != pixels )
421     {
422       AssignBitmap( true, pixels );
423       DiscardBitmapBuffer();
424     }
425   }
426   else
427   {
428     const unsigned char* pixels = NULL;
429     std::vector<unsigned char> pixelData;
430     if( ( NULL == pixels ) && ( true == mClearPixels ) )
431     {
432       unsigned int size = mWidth * mHeight * Pixel::GetBytesPerPixel(mPixelFormat);
433       pixelData.resize(size, 0);
434       pixels = &pixelData[0];
435     }
436     AssignBitmap( true, pixels );
437   }
438
439   return mId != 0;
440 }
441
442 bool BitmapTexture::Init()
443 {
444   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
445   // mBitmap should be initialized by now
446   return (mBitmap != 0);
447 }
448
449 unsigned int BitmapTexture::GetWidth() const
450 {
451   unsigned int width = mWidth;
452   if( mBitmap )
453   {
454     width = mBitmap->GetImageWidth();
455   }
456   return width;
457 }
458
459 unsigned int BitmapTexture::GetHeight() const
460 {
461   unsigned int height = mHeight;
462   if( mBitmap )
463   {
464     height = mBitmap->GetImageHeight();
465   }
466   return height;
467 }
468
469 void BitmapTexture::DiscardBitmapBuffer()
470 {
471   DALI_LOG_INFO(Debug::Filter::gImage, Debug::General, "BitmapTexture::DiscardBitmapBuffer() DiscardPolicy: %s\n", mDiscardPolicy == ResourcePolicy::DISCARD?"DISCARD":"RETAIN");
472
473   if( ResourcePolicy::DISCARD == mDiscardPolicy )
474   {
475     DALI_LOG_INFO(Debug::Filter::gImage, Debug::General, "  Discarding bitmap\n");
476     mBitmap->DiscardBuffer();
477   }
478 }
479
480
481 } //namespace Internal
482
483 } //namespace Dali