mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0032991: Visualization, TKOpenGl - OpenGl_Window::Resize() ignores window virtual flag on macOS
Added handling of Aspect_Window::IsVirtual() flag on macOS platform.
This commit is contained in:
parent
48e4aad412
commit
812afe4edb
@ -436,15 +436,6 @@ void Cocoa_Window::InvalidateContent (const Handle(Aspect_DisplayConnection)& )
|
||||
return;
|
||||
}
|
||||
|
||||
if ([NSThread isMainThread])
|
||||
{
|
||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
[myHView setNeedsDisplay];
|
||||
#else
|
||||
[myHView setNeedsDisplay: YES];
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
[myHView performSelectorOnMainThread: @selector(invalidateContentOcct:)
|
||||
withObject: NULL
|
||||
|
@ -274,11 +274,18 @@ OpenGl_Window::~OpenGl_Window()
|
||||
void OpenGl_Window::Resize()
|
||||
{
|
||||
// If the size is not changed - do nothing
|
||||
Standard_Integer aWidthPt = 0;
|
||||
Standard_Integer aHeightPt = 0;
|
||||
mySizeWindow->Size (aWidthPt, aHeightPt);
|
||||
if (mySizePt.x() == aWidthPt
|
||||
&& mySizePt.y() == aHeightPt)
|
||||
Graphic3d_Vec2i aWinSize;
|
||||
mySizeWindow->Size (aWinSize.x(), aWinSize.y());
|
||||
if (myPlatformWindow->IsVirtual()
|
||||
|| mySizeWindow != myPlatformWindow)
|
||||
{
|
||||
if (mySize == aWinSize)
|
||||
{
|
||||
return;
|
||||
}
|
||||
mySize = aWinSize;
|
||||
}
|
||||
else if (mySizePt == aWinSize)
|
||||
{
|
||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
return;
|
||||
@ -303,8 +310,7 @@ void OpenGl_Window::Resize()
|
||||
#endif
|
||||
}
|
||||
|
||||
mySizePt.x() = aWidthPt;
|
||||
mySizePt.y() = aHeightPt;
|
||||
mySizePt = aWinSize;
|
||||
|
||||
init();
|
||||
}
|
||||
@ -366,40 +372,42 @@ void OpenGl_Window::init()
|
||||
aDefFbo->BindBuffer (myGlContext);
|
||||
aDefFbo.Nullify();
|
||||
#else
|
||||
NSOpenGLContext* aGLCtx = myGlContext->myGContext;
|
||||
Standard_DISABLE_DEPRECATION_WARNINGS
|
||||
NSView* aView = [aGLCtx view];
|
||||
Standard_ENABLE_DEPRECATION_WARNINGS
|
||||
NSRect aBounds = [aView bounds];
|
||||
|
||||
// we should call this method each time when window is resized
|
||||
[aGLCtx update];
|
||||
|
||||
if ([aView respondsToSelector: @selector(convertSizeToBacking:)])
|
||||
if (!myPlatformWindow->IsVirtual()
|
||||
&& mySizeWindow == myPlatformWindow)
|
||||
{
|
||||
NSSize aRes = [aView convertSizeToBacking: aBounds.size];
|
||||
mySize.x() = Standard_Integer(aRes.width);
|
||||
mySize.y() = Standard_Integer(aRes.height);
|
||||
NSOpenGLContext* aGLCtx = myGlContext->myGContext;
|
||||
Standard_DISABLE_DEPRECATION_WARNINGS
|
||||
NSView* aView = [aGLCtx view];
|
||||
Standard_ENABLE_DEPRECATION_WARNINGS
|
||||
NSRect aBounds = [aView bounds];
|
||||
|
||||
// we should call this method each time when window is resized
|
||||
[aGLCtx update];
|
||||
|
||||
if ([aView respondsToSelector: @selector(convertSizeToBacking:)])
|
||||
{
|
||||
NSSize aRes = [aView convertSizeToBacking: aBounds.size];
|
||||
mySize.x() = Standard_Integer(aRes.width);
|
||||
mySize.y() = Standard_Integer(aRes.height);
|
||||
}
|
||||
else
|
||||
{
|
||||
mySize.x() = Standard_Integer(aBounds.size.width);
|
||||
mySize.y() = Standard_Integer(aBounds.size.height);
|
||||
}
|
||||
mySizePt.x() = Standard_Integer(aBounds.size.width);
|
||||
mySizePt.y() = Standard_Integer(aBounds.size.height);
|
||||
}
|
||||
else
|
||||
{
|
||||
mySize.x() = Standard_Integer(aBounds.size.width);
|
||||
mySize.y() = Standard_Integer(aBounds.size.height);
|
||||
}
|
||||
mySizePt.x() = Standard_Integer(aBounds.size.width);
|
||||
mySizePt.y() = Standard_Integer(aBounds.size.height);
|
||||
#endif
|
||||
|
||||
myGlContext->core11fwd->glDisable (GL_DITHER);
|
||||
myGlContext->core11fwd->glDisable (GL_SCISSOR_TEST);
|
||||
myGlContext->core11fwd->glViewport (0, 0, mySize.x(), mySize.y());
|
||||
if (myGlContext->GraphicsLibrary() != Aspect_GraphicsLibrary_OpenGLES)
|
||||
const Standard_Integer aViewport[4] = { 0, 0, mySize.x(), mySize.y() };
|
||||
myGlContext->ResizeViewport (aViewport);
|
||||
myGlContext->SetDrawBuffer (GL_BACK);
|
||||
if (myGlContext->core11ffp != NULL)
|
||||
{
|
||||
myGlContext->core11fwd->glDrawBuffer (GL_BACK);
|
||||
if (myGlContext->core11ffp != NULL)
|
||||
{
|
||||
myGlContext->core11ffp->glMatrixMode (GL_MODELVIEW);
|
||||
}
|
||||
myGlContext->core11ffp->glMatrixMode (GL_MODELVIEW);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -253,7 +253,7 @@ void ViewerTest_EventManager::handleViewRedraw (const Handle(AIS_InteractiveCont
|
||||
&& (!aRedrawer.IsStarted() || aRedrawer.IsPaused()))
|
||||
{
|
||||
myIsTmpContRedraw = true;
|
||||
#if !defined(_WIN32) && !defined(__EMSCRIPTEN__)
|
||||
#if !defined(_WIN32) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
|
||||
aRedrawer.Start (theView, 60.0);
|
||||
#endif
|
||||
}
|
||||
@ -269,7 +269,7 @@ void ViewerTest_EventManager::handleViewRedraw (const Handle(AIS_InteractiveCont
|
||||
else if (myIsTmpContRedraw)
|
||||
{
|
||||
myIsTmpContRedraw = false;
|
||||
#ifndef _WIN32
|
||||
#if !defined(_WIN32) && !defined(__APPLE__)
|
||||
ViewerTest_ContinuousRedrawer& aRedrawer = ViewerTest_ContinuousRedrawer::Instance();
|
||||
aRedrawer.Pause();
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user