mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0021981: Additional callback before redraw procedure
This commit is contained in:
parent
4071d9e637
commit
b299a91c4d
@ -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;
|
||||
|
@ -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<NIS_View *> (ptrData));
|
||||
NCollection_List<NIS_InteractiveContext *>::Iterator anIter;
|
||||
#ifdef CLIP
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user