1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025438: Visualization, TKOpenGl - always setup viewport within OpenGl_Workspace::Redraw()

This commit is contained in:
kgv 2014-10-31 15:33:12 +03:00 committed by bugmaster
parent c827ea3a68
commit e3573bb9ec
5 changed files with 24 additions and 39 deletions

View File

@ -15,18 +15,6 @@
#ifndef InterfaceGraphic_AspectHeader #ifndef InterfaceGraphic_AspectHeader
#define InterfaceGraphic_AspectHeader #define InterfaceGraphic_AspectHeader
#ifndef IMP100701
#define IMP100701 /* GG Add depth field in the bitmap structure */
#endif
#ifndef RIC120302
#define RIC120302 /*GG Add NEW field in CALL_DEF_WINDOW structure
// to registred parent window ID
// Change Aspect_Handle to Aspect_Drawable for
// a more correct understanding.
*/
#endif
#include <Aspect_Drawable.hxx> #include <Aspect_Drawable.hxx>
#include <Aspect_RenderingContext.hxx> #include <Aspect_RenderingContext.hxx>
@ -41,10 +29,7 @@ typedef struct {
int IsDefined; int IsDefined;
Aspect_Drawable XWindow; Aspect_Drawable XWindow;
#ifdef RIC120302
Aspect_Drawable XParentWindow; Aspect_Drawable XParentWindow;
#endif
EXT_WINDOW *ext_data; EXT_WINDOW *ext_data;
@ -52,7 +37,7 @@ typedef struct {
float xm, ym, xM, yM; float xm, ym, xM, yM;
} Position; } Position;
float dx, dy; int dx, dy;
char *Title; char *Title;

View File

@ -754,7 +754,7 @@ void OpenGl_View::RedrawLayer2d (const Handle(OpenGl_PrinterContext)& thePrintCo
aContext->ApplyProjectionMatrix(); aContext->ApplyProjectionMatrix();
if (!ACLayer.sizeDependent) if (!ACLayer.sizeDependent)
glViewport (0, 0, dispWidth, dispHeight); aContext->core11fwd->glViewport (0, 0, dispWidth, dispHeight);
float left = ACLayer.ortho[0]; float left = ACLayer.ortho[0];
float right = ACLayer.ortho[1]; float right = ACLayer.ortho[1];
@ -763,11 +763,9 @@ void OpenGl_View::RedrawLayer2d (const Handle(OpenGl_PrinterContext)& thePrintCo
int attach = ACLayer.attach; int attach = ACLayer.attach;
float ratio; const float ratio = !ACLayer.sizeDependent
if (!ACLayer.sizeDependent) ? float(dispWidth) / float(dispHeight)
ratio = (float) dispWidth/dispHeight; : float(theWorkspace->Width()) / float(theWorkspace->Height());
else
ratio = ACView.DefWindow.dx/ACView.DefWindow.dy;
float delta; float delta;
if (ratio >= 1.0) { if (ratio >= 1.0) {
@ -827,7 +825,7 @@ void OpenGl_View::RedrawLayer2d (const Handle(OpenGl_PrinterContext)& thePrintCo
GLsizei anViewportY = 0; GLsizei anViewportY = 0;
thePrintContext->GetLayerViewport (anViewportX, anViewportY); thePrintContext->GetLayerViewport (anViewportX, anViewportY);
if (anViewportX != 0 && anViewportY != 0) if (anViewportX != 0 && anViewportY != 0)
glViewport (0, 0, anViewportX, anViewportY); aContext->core11fwd->glViewport (0, 0, anViewportX, anViewportY);
} }
#endif #endif
@ -862,7 +860,7 @@ void OpenGl_View::RedrawLayer2d (const Handle(OpenGl_PrinterContext)& thePrintCo
aContext->ApplyWorldViewMatrix(); aContext->ApplyWorldViewMatrix();
if (!ACLayer.sizeDependent) if (!ACLayer.sizeDependent)
glViewport (0, 0, (GLsizei) ACView.DefWindow.dx, (GLsizei) ACView.DefWindow.dy); aContext->core11fwd->glViewport (0, 0, theWorkspace->Width(), theWorkspace->Height());
glFlush (); glFlush ();
#endif #endif

View File

@ -139,8 +139,8 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
const Handle(OpenGl_Context)& theShareCtx) const Handle(OpenGl_Context)& theShareCtx)
: myGlContext (new OpenGl_Context (theCaps)), : myGlContext (new OpenGl_Context (theCaps)),
myOwnGContext (theGContext == 0), myOwnGContext (theGContext == 0),
myWidth ((Standard_Integer )theCWindow.dx), myWidth (theCWindow.dx),
myHeight ((Standard_Integer )theCWindow.dy), myHeight (theCWindow.dy),
myBgColor (THE_DEFAULT_BG_COLOR) myBgColor (THE_DEFAULT_BG_COLOR)
{ {
myBgColor.rgb[0] = theCWindow.Background.r; myBgColor.rgb[0] = theCWindow.Background.r;
@ -665,8 +665,8 @@ void OpenGl_Window::Resize (const CALL_DEF_WINDOW& theCWindow)
if ((myWidth == theCWindow.dx) && (myHeight == theCWindow.dy)) if ((myWidth == theCWindow.dx) && (myHeight == theCWindow.dy))
return; return;
myWidth = (Standard_Integer )theCWindow.dx; myWidth = theCWindow.dx;
myHeight = (Standard_Integer )theCWindow.dy; myHeight = theCWindow.dy;
#if !defined(_WIN32) && !defined(HAVE_EGL) && !defined(__ANDROID__) #if !defined(_WIN32) && !defined(HAVE_EGL) && !defined(__ANDROID__)
XResizeWindow (aDisp, myGlContext->myWindow, (unsigned int )myWidth, (unsigned int )myHeight); XResizeWindow (aDisp, myGlContext->myWindow, (unsigned int )myWidth, (unsigned int )myHeight);
@ -740,8 +740,8 @@ void OpenGl_Window::Init()
return; return;
#if defined(HAVE_EGL) || defined(__ANDROID__) #if defined(HAVE_EGL) || defined(__ANDROID__)
eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_WIDTH, &myWidth); eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_WIDTH, &myWidth);
eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_HEIGHT, &myHeight); eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_HEIGHT, &myHeight);
#elif defined(_WIN32) #elif defined(_WIN32)
RECT cr; RECT cr;
GetClientRect ((HWND )myGlContext->myWindow, &cr); GetClientRect ((HWND )myGlContext->myWindow, &cr);
@ -760,9 +760,9 @@ void OpenGl_Window::Init()
#endif #endif
glDisable (GL_SCISSOR_TEST); glDisable (GL_SCISSOR_TEST);
glViewport (0, 0, myWidth, myHeight);
#if !defined(GL_ES_VERSION_2_0) #if !defined(GL_ES_VERSION_2_0)
glMatrixMode (GL_MODELVIEW); glMatrixMode (GL_MODELVIEW);
glViewport (0, 0, myWidth, myHeight);
glDrawBuffer (GL_BACK); glDrawBuffer (GL_BACK);
#endif #endif
} }

View File

@ -640,14 +640,16 @@ void OpenGl_Workspace::Redraw (const Graphic3d_CView& theCView,
aGlCtx->FetchState(); aGlCtx->FetchState();
Tint toSwap = (aGlCtx->IsRender() && !aGlCtx->caps->buffersNoSwap) ? 1 : 0; // swap buffers Tint toSwap = (aGlCtx->IsRender() && !aGlCtx->caps->buffersNoSwap) ? 1 : 0; // swap buffers
GLint aViewPortBack[4];
OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theCView.ptrFBO; OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theCView.ptrFBO;
if (aFrameBuffer != NULL) if (aFrameBuffer != NULL)
{ {
glGetIntegerv (GL_VIEWPORT, aViewPortBack);
aFrameBuffer->SetupViewport (aGlCtx); aFrameBuffer->SetupViewport (aGlCtx);
toSwap = 0; // no need to swap buffers toSwap = 0; // no need to swap buffers
} }
else
{
aGlCtx->core11fwd->glViewport (0, 0, myWidth, myHeight);
}
myToRedrawGL = Standard_True; myToRedrawGL = Standard_True;
if (theCView.RenderParams.Method == Graphic3d_RM_RAYTRACING if (theCView.RenderParams.Method == Graphic3d_RM_RAYTRACING
@ -721,7 +723,7 @@ void OpenGl_Workspace::Redraw (const Graphic3d_CView& theCView,
{ {
aFrameBuffer->UnbindBuffer (aGlCtx); aFrameBuffer->UnbindBuffer (aGlCtx);
// move back original viewport // move back original viewport
glViewport (aViewPortBack[0], aViewPortBack[1], aViewPortBack[2], aViewPortBack[3]); aGlCtx->core11fwd->glViewport (0, 0, myWidth, myHeight);
} }
#if defined(_WIN32) && defined(HAVE_VIDEOCAPTURE) #if defined(_WIN32) && defined(HAVE_VIDEOCAPTURE)

View File

@ -111,8 +111,8 @@ void Visual3d_View::SetWindow (const Handle(Aspect_Window)& theWindow)
Standard_Integer Width, Height; Standard_Integer Width, Height;
theWindow->Size (Width, Height); theWindow->Size (Width, Height);
MyCView.DefWindow.dx = float(Width); MyCView.DefWindow.dx = Width;
MyCView.DefWindow.dy = float(Height); MyCView.DefWindow.dy = Height;
Standard_Real R, G, B; Standard_Real R, G, B;
MyBackground = MyWindow->Background (); MyBackground = MyWindow->Background ();
@ -274,10 +274,10 @@ void Visual3d_View::SetRatio()
MyWindow->Size (aWidth, aHeight); MyWindow->Size (aWidth, aHeight);
if (aWidth > 0 && aHeight > 0) if (aWidth > 0 && aHeight > 0)
{ {
Standard_Real aRatio = (Standard_Real)aWidth / (Standard_Real)aHeight; Standard_Real aRatio = (Standard_Real)aWidth / (Standard_Real)aHeight;
MyCView.DefWindow.dx = Standard_ShortReal (aWidth); MyCView.DefWindow.dx = aWidth;
MyCView.DefWindow.dy = Standard_ShortReal (aHeight); MyCView.DefWindow.dy = aHeight;
myGraphicDriver->RatioWindow (MyCView); myGraphicDriver->RatioWindow (MyCView);