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

0028820: Samples - fix compilation of JAVA sample for Android

This commit is contained in:
kgv 2017-06-06 17:59:57 +03:00 committed by bugmaster
parent 1fae7cdaf1
commit b2857a7ef0
2 changed files with 3 additions and 3 deletions

View File

@ -195,8 +195,8 @@ bool OcctJni_Viewer::init()
// create AIS context
myContext = new AIS_InteractiveContext (myViewer);
//myContext->SetDisplayMode (AIS_WireFrame);
myContext->SetDisplayMode (AIS_Shaded);
//myContext->SetDisplayMode (AIS_WireFrame, false);
myContext->SetDisplayMode (AIS_Shaded, false);
Handle(OcctJni_Window) aWindow = new OcctJni_Window (aWidth, aHeight);
myView = myViewer->CreateView();

View File

@ -268,7 +268,7 @@ bool AndroidQt::initViewer()
// create AIS context
myContext = new AIS_InteractiveContext (myViewer);
myContext->SetDisplayMode (AIS_Shaded);
myContext->SetDisplayMode (AIS_Shaded, false);
Handle(AndroidQt_Window) aWindow = new AndroidQt_Window (aWidth, aHeight);
myView = myViewer->CreateView();