mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-02 17:57:59 +08:00
0024637: Visualization - clean up implementation of rendering in immediate mode
Remove unused flag "DoubleBuf". Remove Visual3d_TransientManager "class" (functionality moved to PrsMgr_PresentationManager). Remove unused "Add" immediate mode. V3d_View class - remove methods ::TransientManagerBeginDraw(), ::TransientManagerClearDraw(), ::TransientManagerBeginAddDraw(). Add method ::RedrawImmediate() to redraw only immediate presentations. OpenGl_GraphicDriver - add methods ::DisplayImmediateStructure(), ::EraseImmediateStructure(), ::RedrawImmediate(). OpenGl_View - manage list of immediate structures. OpenGl_Workspace - automate rendering workflow of immediate + persistent layers. Merge PrsMgr_PresentationManager3d class into PrsMgr_PresentationManager. Mark PrsMgr_PresentationManager3d as alias to PrsMgr_PresentationManager to simplify porting. Prs3d_Presentation - remove unused field myStruct. Prs3d_PresentationShadow - shadow link to existing presentation with custom attributes. Graphic3d_Structure::Highlight() - do not register undisplayed structure in structure manager. AIS_InteractiveContext, AIS_LocalContext add flag to prevent view update into methods ::MoveTo(), ::HilightNextDetected(), ::HilightPreviousDetected() to allow update of customized immediate structures before redraw but after ::MoveTo(). Remove unused method AIS_InteractiveContext::Drag(). StdSelect_ViewerSelector3d do not user immediate mode in methods ::DisplayAreas(), ::ClearAreas(), ::ClearSensitive(), ::DisplaySensitive(), GridEcho - update value in StdSelect_ViewerSelector3d::Pick() instead of V3d_View::Compute(). Do not use global variable for GridEcho vertex. Redraw immediate mode not within GridEcho but at AIS_InteractiveContext, AIS_LocalContext layer. V3d_View::ToPixMap() - disable autoupdate during FitAll. Avoid Redraw() into FBO without ImmediateModeDrawToFront flag. PrsMgr_PresentationManager stores list of temporary immediate presentations, automatically cleared within BeginImmediateMode() call. Methods with ambiguous names have been renamed (new names now consistent with pre-existed method names in AIS_LocalContext class): - BeginDraw -> BeginImmediateDraw - EndDraw -> EndImmediateDraw Remove now useless Remove() method (and ImmediateRemove() in AIS). Visual3d_View now stores map of displayed immediate presentations. ViewerTest_EventManager - eliminate double redraw in selection methods. Fix warning
This commit is contained in:
@@ -88,11 +88,21 @@ is
|
||||
-- visualiser <me>.
|
||||
---Category: Methods to modify the class definition
|
||||
|
||||
Redraw ( me )
|
||||
is static;
|
||||
---Level: Public
|
||||
---Purpose: Redraws all the displayed structures.
|
||||
---Category: Methods to modify the class definition
|
||||
Redraw ( me )
|
||||
is static;
|
||||
---Level: Public
|
||||
---Purpose: Redraws all the displayed structures.
|
||||
---Category: Methods to modify the class definition
|
||||
|
||||
RedrawImmediate ( me )
|
||||
is static;
|
||||
---Level: Public
|
||||
---Purpose: Updates layer of immediate presentations.
|
||||
|
||||
Invalidate ( me )
|
||||
is static;
|
||||
---Level: Public
|
||||
---Purpose: Invalidates viewer content but does not redraw it.
|
||||
|
||||
Remove ( me : mutable )
|
||||
is static;
|
||||
@@ -100,13 +110,11 @@ is
|
||||
---Purpose: Deletes and erases the 3D visualiser <me>.
|
||||
---Category: Methods to modify the class definition
|
||||
|
||||
Update ( me )
|
||||
is redefined static;
|
||||
---Level: Public
|
||||
---Purpose: Updates screen in function of modifications of
|
||||
-- the structures.
|
||||
-- Category: Methods to modify the class definition
|
||||
-- Warning: Not necessary if the update mode is TOU_ASAP.
|
||||
Update ( me )
|
||||
is redefined static;
|
||||
---Level: Public
|
||||
---Purpose: Updates screen in function of modifications of the structures.
|
||||
-- Category: Methods to modify the class definition
|
||||
|
||||
----------------------------
|
||||
-- Category: Inquire methods
|
||||
|
||||
Reference in New Issue
Block a user