mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Update mask pixel format in panoply preview tool
--HG-- branch : develop
This commit is contained in:
parent
8673d27a13
commit
9c687430c8
1 changed files with 2 additions and 2 deletions
|
@ -263,8 +263,8 @@ void CPanoplyPreview::goPushed(bool)
|
||||||
uint32 depth = m_ColorThread->MaskBitmap.load(is);
|
uint32 depth = m_ColorThread->MaskBitmap.load(is);
|
||||||
if (depth == 0 || m_ColorThread->MaskBitmap.getPixels().empty())
|
if (depth == 0 || m_ColorThread->MaskBitmap.getPixels().empty())
|
||||||
throw NLMISC::Exception("Failed to load bitmap '%s'", m_MaskFile.toLocal8Bit().data());
|
throw NLMISC::Exception("Failed to load bitmap '%s'", m_MaskFile.toLocal8Bit().data());
|
||||||
if (m_ColorThread->MaskBitmap.PixelFormat != NLMISC::CBitmap::RGBA)
|
if (m_ColorThread->MaskBitmap.PixelFormat != NLMISC::CBitmap::Luminance)
|
||||||
m_ColorThread->MaskBitmap.convertToType(NLMISC::CBitmap::RGBA);
|
m_ColorThread->MaskBitmap.convertToType(NLMISC::CBitmap::Luminance);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
m_ColorThread->BitmapsOk = true;
|
m_ColorThread->BitmapsOk = true;
|
||||||
|
|
Loading…
Reference in a new issue