proper enums for texture units to improve readability and allow renderer type specifi...
[platform/core/uifw/dali-core.git] / dali / internal / render / gl-resources / compressed-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/compressed-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 CompressedBitmapTexture::CompressedBitmapTexture(Internal::BitmapCompressed* const bitmap, Context& context, ResourcePolicy::Discardable discardPolicy)
35 : Texture(context,
36           bitmap->GetImageWidth(),
37           bitmap->GetImageHeight(),
38           bitmap->GetImageWidth(),
39           bitmap->GetImageHeight(),
40           bitmap->GetPixelFormat()),
41   mBitmap(bitmap),
42   mDiscardPolicy(discardPolicy)
43 {
44   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
45   DALI_LOG_SET_OBJECT_STRING(this, DALI_LOG_GET_OBJECT_STRING(bitmap));
46 }
47
48 CompressedBitmapTexture::~CompressedBitmapTexture()
49 {
50   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
51   // GlCleanup() should already have been called by TextureCache ensuring the resource is destroyed
52   // on the render thread. (And avoiding a potentially problematic virtual call in the destructor)
53 }
54
55 bool CompressedBitmapTexture::HasAlphaChannel() const
56 {
57   return Pixel::HasAlpha(mPixelFormat);
58 }
59
60 bool CompressedBitmapTexture::IsFullyOpaque() const
61 {
62   if( mBitmap )
63   {
64     return mBitmap->IsFullyOpaque();
65   }
66   else
67   {
68     return ! HasAlphaChannel(); // Todo: amalgamate updated bitmap's IsFullyOpaque()
69   }
70 }
71
72
73 void CompressedBitmapTexture::AssignBitmap( bool generateTexture, const unsigned char* const pixels, const size_t bufferSize )
74 {
75   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
76   DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::Verbose, "CompressedBitmapTexture::AssignBitmap()\n");
77
78   if( generateTexture )
79   {
80     mContext.GenTextures(1, &mId);
81   }
82   DALI_ASSERT_DEBUG( mId != 0 );
83
84   mContext.ActiveTexture(TextureUnitAsGLenum( TEXTURE_UNIT_UPLOAD )); // bind in unused unit so rebind works the first time
85   mContext.Bind2dTexture(mId);
86
87   GLenum pixelFormat = GL_RGBA;
88   GLenum pixelDataType = GL_UNSIGNED_BYTE;
89   Integration::ConvertToGlFormat(mPixelFormat, pixelDataType, pixelFormat);
90
91   mContext.PixelStorei(GL_UNPACK_ALIGNMENT, 1); // We always use tightly packed data
92   mContext.CompressedTexImage2D(GL_TEXTURE_2D, 0, pixelFormat, mWidth, mHeight, 0, bufferSize, pixels);
93   mContext.TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
94   mContext.TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
95
96   INCREASE_BY( PerformanceMonitor::TEXTURE_DATA_UPLOADED, bufferSize );
97 }
98
99 void CompressedBitmapTexture::Update( Integration::Bitmap* bitmap )
100 {
101   DALI_ASSERT_DEBUG(bitmap);
102   DALI_ASSERT_DEBUG(mImageWidth == mWidth && mImageHeight == mHeight);
103   DALI_LOG_INFO(Debug::Filter::gGLResource, Debug::General, "CompressedBitmapTexture::Update(bitmap:%p )\n", bitmap);
104
105   if( !bitmap )
106   {
107     DALI_LOG_ERROR( "Passed a null bitmap to update this compressed bitmap texture." );
108     return;
109   }
110
111   Internal::BitmapCompressed * const compressedBitmap = dynamic_cast<Dali::Internal::BitmapCompressed*>( bitmap );
112   if( compressedBitmap == 0 )
113   {
114     DALI_LOG_ERROR("CompressedBitmapTexture was passed a non-compressed bitmap to update with.\n");
115     return;
116   }
117   mBitmap = compressedBitmap;
118
119   const unsigned char * const pixels = mBitmap->GetBuffer();
120
121   DALI_ASSERT_DEBUG(pixels != NULL);
122
123   if ( NULL == pixels )
124   {
125     DALI_LOG_ERROR("Bitmap has no data\n");
126   }
127   else
128   {
129     mImageWidth  = mBitmap->GetImageWidth();
130     mImageHeight = mBitmap->GetImageHeight();
131     mWidth       = mImageWidth;
132     mHeight      = mImageHeight;
133     mPixelFormat = mBitmap->GetPixelFormat();
134
135     if ( mId ) // If the texture is already bound
136     {
137       AssignBitmap( false, pixels, mBitmap->GetBufferSize() );
138
139       if( mDiscardPolicy == ResourcePolicy::DISCARD )
140       {
141         mBitmap->DiscardBuffer();
142       }
143     }
144   }
145 }
146
147 bool CompressedBitmapTexture::UpdateOnCreate()
148 {
149   return true;
150 }
151
152 bool CompressedBitmapTexture::CreateGlTexture()
153 {
154   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
155   DALI_LOG_INFO(Debug::Filter::gImage, Debug::Verbose, "Bitmap: %s\n", DALI_LOG_GET_OBJECT_C_STR(this));
156
157   if( mBitmap )
158   {
159     const unsigned char* pixels = mBitmap->GetBuffer();
160
161     DALI_ASSERT_DEBUG(pixels != NULL);
162
163     if( NULL != pixels )
164     {
165       AssignBitmap( true, pixels, mBitmap->GetBufferSize() );
166       mBitmap->DiscardBuffer();
167     }
168   }
169   else
170   {
171     AssignBitmap( true, NULL, 0 );
172   }
173
174   return mId != 0;
175 }
176
177 bool CompressedBitmapTexture::Init()
178 {
179   DALI_LOG_TRACE_METHOD(Debug::Filter::gImage);
180   // mBitmap should be initialized by now
181   return (mBitmap != 0);
182 }
183
184 unsigned int CompressedBitmapTexture::GetWidth() const
185 {
186   unsigned int width = mWidth;
187   if( mBitmap )
188   {
189     width = mBitmap->GetImageWidth();
190   }
191   return width;
192 }
193
194 unsigned int CompressedBitmapTexture::GetHeight() const
195 {
196   unsigned int height = mHeight;
197   if( mBitmap )
198   {
199     height = mBitmap->GetImageHeight();
200   }
201   return height;
202 }
203
204 } //namespace Internal
205
206 } //namespace Dali