From b299a91c4d0770350ffb3e3cd1a873fde1466ef0 Mon Sep 17 00:00:00 2001 From: APL <> Date: Thu, 22 Sep 2011 15:08:38 +0000 Subject: [PATCH] 0021981: Additional callback before redraw procedure --- src/Aspect/Aspect_GraphicCallbackProc.hxx | 17 ++++++++++++----- src/NIS/NIS_View.cxx | 10 +++++++++- src/OpenGl/OpenGl_togl_print.cxx | 1 + src/OpenGl/OpenGl_togl_redraw.cxx | 2 ++ 4 files changed, 24 insertions(+), 6 deletions(-) diff --git a/src/Aspect/Aspect_GraphicCallbackProc.hxx b/src/Aspect/Aspect_GraphicCallbackProc.hxx index 3a6e79e8da..0b2fd79192 100755 --- a/src/Aspect/Aspect_GraphicCallbackProc.hxx +++ b/src/Aspect/Aspect_GraphicCallbackProc.hxx @@ -15,13 +15,20 @@ #define OCC_REDRAW_WINDOWAREA 2 #define OCC_REDRAW_BITMAP 3 -/* - This flag, when bitwise OR`ed with the "reason" value, - informs the callback that it is called before redrawing the overlayer . - Otherwise, the callback is invoked after the overlayer is redrawn. -*/ +// The flags below provide additional information to define the moment when +// callback was invoked in redraw procedure. These flags are bitwise OR'ed +// with the "reason" value of callback: +// 1) OCC_PRE_REDRAW - callback was invoked before redrawing underlayer +// ( at the beginning of redraw procedure ); +// 2) OCC_PRE_OVERLAY - callback was invoked before redrawing overlayer; +// Otherwise, if no flags added to the "reason" value, the callback was +// invoked at the end of redraw ( after the overlayer is redrawn ) +#define OCC_PRE_REDRAW 0x4000 #define OCC_PRE_OVERLAY 0x8000 +// mask for all additional callbacks that invoked in process of redrawing +#define OCC_REDRAW_ADDITIONAL_CALLBACKS ( OCC_PRE_REDRAW | OCC_PRE_OVERLAY ) + typedef struct { int reason; int wsID; diff --git a/src/NIS/NIS_View.cxx b/src/NIS/NIS_View.cxx index d5d1db976d..12aaf3dc15 100755 --- a/src/NIS/NIS_View.cxx +++ b/src/NIS/NIS_View.cxx @@ -262,8 +262,16 @@ void NIS_View::GetBndBox( Standard_Integer& theXMin, Standard_Integer& theXMax, int NIS_View::MyCallback (Aspect_Drawable /* Window ID */, void* ptrData, - Aspect_GraphicCallbackStruct* /* call data */) + Aspect_GraphicCallbackStruct* callData /* call data */) { + // Avoid multiple rendering of the scene ( accordingly with update of + // callback mechanism, that invokes additional callbacks before + // underlay and overlay redrawing with OCC_PRE_REDRAW and OCC_PRE_OVERLAY + // bits added to the "reason" value of the callback data structure; + // see comments to OCC_REDRAW_ADDITIONAL_CALLBACKS definition ) + if (callData->reason & OCC_REDRAW_ADDITIONAL_CALLBACKS) + return 0; + const Handle(NIS_View) thisView (static_cast (ptrData)); NCollection_List::Iterator anIter; #ifdef CLIP diff --git a/src/OpenGl/OpenGl_togl_print.cxx b/src/OpenGl/OpenGl_togl_print.cxx index d5b580b60b..7429b7f8d8 100755 --- a/src/OpenGl/OpenGl_togl_print.cxx +++ b/src/OpenGl/OpenGl_togl_print.cxx @@ -163,6 +163,7 @@ static void redrawView (CALL_DEF_VIEW *aview, { // prepare for redraw call_func_redraw_all_structs_begin (aview->WsId); + call_subr_displayCB (aview, OCC_REDRAW_BITMAP | OCC_PRE_REDRAW); call_togl_setplane (aview); // clear background diff --git a/src/OpenGl/OpenGl_togl_redraw.cxx b/src/OpenGl/OpenGl_togl_redraw.cxx index dfbbce6e0f..377d3c29c2 100755 --- a/src/OpenGl/OpenGl_togl_redraw.cxx +++ b/src/OpenGl/OpenGl_togl_redraw.cxx @@ -89,6 +89,7 @@ call_togl_redraw } OpenGl_ResourceCleaner::GetInstance()->Cleanup(); call_func_redraw_all_structs_begin (aview->WsId); + call_subr_displayCB (aview, OCC_REDRAW_WINDOW | OCC_PRE_REDRAW); call_togl_setplane( aview ); if (anunderlayer->ptrLayer) { @@ -167,6 +168,7 @@ call_togl_redraw_area (GLsizei )width, (GLsizei )height); OpenGl_ResourceCleaner::GetInstance()->Cleanup(); call_func_redraw_all_structs_begin (aview->WsId); + call_subr_displayCB (aview, OCC_REDRAW_WINDOWAREA | OCC_PRE_REDRAW); call_togl_setplane( aview ); if (anunderlayer->ptrLayer) {