From 20085dac44ef82911544e29b0c05702ac2b440bc Mon Sep 17 00:00:00 2001 From: kgv Date: Mon, 29 Mar 2021 17:56:06 +0300 Subject: [PATCH] 0032262: Samples - JNIViewer sample compilation failure due to usage of removed aliases to Image_Format --- samples/java/jniviewer/app/src/main/jni/OcctJni_Viewer.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/java/jniviewer/app/src/main/jni/OcctJni_Viewer.cxx b/samples/java/jniviewer/app/src/main/jni/OcctJni_Viewer.cxx index 9c23b3d296..14a05680ba 100644 --- a/samples/java/jniviewer/app/src/main/jni/OcctJni_Viewer.cxx +++ b/samples/java/jniviewer/app/src/main/jni/OcctJni_Viewer.cxx @@ -577,7 +577,7 @@ bool OcctJni_Viewer::saveSnapshot (const TCollection_AsciiString& thePath, } 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); return false; @@ -586,7 +586,7 @@ bool OcctJni_Viewer::saveSnapshot (const TCollection_AsciiString& thePath, // OpenGL ES does not support fetching data in BGRA format // while FreeImage does not support RGBA format. Image_PixMap anImage; - anImage.InitWrapper (Image_PixMap::ImgRGBA, + anImage.InitWrapper (Image_Format_RGBA, anAlienImage.ChangeData(), anAlienImage.SizeX(), anAlienImage.SizeY(),