Make sure to always convert to plain bitmap.
This commit is contained in:
parent
2a47ce3292
commit
28807c5eea
1 changed files with 5 additions and 0 deletions
|
@ -55,6 +55,11 @@ void TextureChooser::onCurrentRowChanged( int row )
|
|||
NLMISC::CBitmap bm;
|
||||
uint8 depth = bm.load( f );
|
||||
f.close();
|
||||
b = bm.convertToType( NLMISC::CBitmap::RGBA );
|
||||
if( !b )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
uint32 size = bm.getSize() * ( 32 / 8 ); // should be depth, but CBitmap always uses 32 bit to store the image
|
||||
|
||||
|
|
Loading…
Reference in a new issue