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

0021981: Additional callback before redraw procedure

This commit is contained in:
APL 2011-09-22 15:08:38 +00:00 committed by bugmaster
parent 4071d9e637
commit b299a91c4d
4 changed files with 24 additions and 6 deletions

View File

@ -15,13 +15,20 @@
#define OCC_REDRAW_WINDOWAREA 2 #define OCC_REDRAW_WINDOWAREA 2
#define OCC_REDRAW_BITMAP 3 #define OCC_REDRAW_BITMAP 3
/* // The flags below provide additional information to define the moment when
This flag, when bitwise OR`ed with the "reason" value, // callback was invoked in redraw procedure. These flags are bitwise OR'ed
informs the callback that it is called before redrawing the overlayer . // with the "reason" value of callback:
Otherwise, the callback is invoked after the overlayer is redrawn. // 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 #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 { typedef struct {
int reason; int reason;
int wsID; int wsID;

View File

@ -262,8 +262,16 @@ void NIS_View::GetBndBox( Standard_Integer& theXMin, Standard_Integer& theXMax,
int NIS_View::MyCallback (Aspect_Drawable /* Window ID */, int NIS_View::MyCallback (Aspect_Drawable /* Window ID */,
void* ptrData, 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<NIS_View *> (ptrData)); const Handle(NIS_View) thisView (static_cast<NIS_View *> (ptrData));
NCollection_List<NIS_InteractiveContext *>::Iterator anIter; NCollection_List<NIS_InteractiveContext *>::Iterator anIter;
#ifdef CLIP #ifdef CLIP

View File

@ -163,6 +163,7 @@ static void redrawView (CALL_DEF_VIEW *aview,
{ {
// prepare for redraw // prepare for redraw
call_func_redraw_all_structs_begin (aview->WsId); call_func_redraw_all_structs_begin (aview->WsId);
call_subr_displayCB (aview, OCC_REDRAW_BITMAP | OCC_PRE_REDRAW);
call_togl_setplane (aview); call_togl_setplane (aview);
// clear background // clear background

View File

@ -89,6 +89,7 @@ call_togl_redraw
} }
OpenGl_ResourceCleaner::GetInstance()->Cleanup(); OpenGl_ResourceCleaner::GetInstance()->Cleanup();
call_func_redraw_all_structs_begin (aview->WsId); call_func_redraw_all_structs_begin (aview->WsId);
call_subr_displayCB (aview, OCC_REDRAW_WINDOW | OCC_PRE_REDRAW);
call_togl_setplane( aview ); call_togl_setplane( aview );
if (anunderlayer->ptrLayer) if (anunderlayer->ptrLayer)
{ {
@ -167,6 +168,7 @@ call_togl_redraw_area
(GLsizei )width, (GLsizei )height); (GLsizei )width, (GLsizei )height);
OpenGl_ResourceCleaner::GetInstance()->Cleanup(); OpenGl_ResourceCleaner::GetInstance()->Cleanup();
call_func_redraw_all_structs_begin (aview->WsId); call_func_redraw_all_structs_begin (aview->WsId);
call_subr_displayCB (aview, OCC_REDRAW_WINDOWAREA | OCC_PRE_REDRAW);
call_togl_setplane( aview ); call_togl_setplane( aview );
if (anunderlayer->ptrLayer) if (anunderlayer->ptrLayer)
{ {