| 209 | //----------------------------------------------------------------------------- |
| 210 | |
| 211 | inline GBitmap *GFXTextureObject::getBitmap() |
| 212 | { |
| 213 | AssertFatal( mProfile->doStoreBitmap(), avar("GFXTextureObject::getBitmap - Cannot access bitmap for a '%s' texture.", mProfile->getName().c_str()) ); |
| 214 | |
| 215 | return mBitmap; |
| 216 | } |
| 217 | |
| 218 | inline DDSFile *GFXTextureObject::getDDS() |
| 219 | { |
no test coverage detected