1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0032262: Samples - JNIViewer sample compilation failure due to usage of removed aliases to Image_Format

This commit is contained in:
kgv 2021-03-29 17:56:06 +03:00 committed by bugmaster
parent cdcb843ef4
commit 20085dac44

View File

@ -577,7 +577,7 @@ bool OcctJni_Viewer::saveSnapshot (const TCollection_AsciiString& thePath,
} }
Image_AlienPixMap anAlienImage; Image_AlienPixMap anAlienImage;
if (!anAlienImage.InitTrash (Image_PixMap::ImgBGRA, theWidth, theHeight)) if (!anAlienImage.InitTrash (Image_Format_BGRA, theWidth, theHeight))
{ {
Message::DefaultMessenger()->Send (TCollection_AsciiString() + "RGBA image " + theWidth + "x" + theHeight + " allocation failed", Message_Fail); Message::DefaultMessenger()->Send (TCollection_AsciiString() + "RGBA image " + theWidth + "x" + theHeight + " allocation failed", Message_Fail);
return false; return false;
@ -586,7 +586,7 @@ bool OcctJni_Viewer::saveSnapshot (const TCollection_AsciiString& thePath,
// OpenGL ES does not support fetching data in BGRA format // OpenGL ES does not support fetching data in BGRA format
// while FreeImage does not support RGBA format. // while FreeImage does not support RGBA format.
Image_PixMap anImage; Image_PixMap anImage;
anImage.InitWrapper (Image_PixMap::ImgRGBA, anImage.InitWrapper (Image_Format_RGBA,
anAlienImage.ChangeData(), anAlienImage.ChangeData(),
anAlienImage.SizeX(), anAlienImage.SizeX(),
anAlienImage.SizeY(), anAlienImage.SizeY(),