Open Inventor Release 2024.2.3
 
Loading...
Searching...
No Matches
SoGLRenderAction.h
1/*=======================================================================
2 * Copyright 1991-1996, Silicon Graphics, Inc.
3 * ALL RIGHTS RESERVED
4 *
5 * UNPUBLISHED -- Rights reserved under the copyright laws of the United
6 * States. Use of a copyright notice is precautionary only and does not
7 * imply publication or disclosure.
8 *
9 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
10 * Use, duplication or disclosure by the Government is subject to restrictions
11 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
12 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
13 * in similar or successor clauses in the FAR, or the DOD or NASA FAR
14 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
15 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
16 *
17 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
18 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
19 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
20 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
21 * GRAPHICS, INC.
22**=======================================================================*/
23/*=======================================================================
24** Author : Paul S. Strauss (MMM yyyy)
25**=======================================================================*/
26/*=======================================================================
27 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
28 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
29 *** ***
30 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
31 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
32 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
33 *** ***
34 *** RESTRICTED RIGHTS LEGEND ***
35 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
36 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
37 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
38 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
39 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
40 *** ***
41 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
42 *** BORDEAUX, FRANCE ***
43 *** ALL RIGHTS RESERVED ***
44**=======================================================================*/
45/*=======================================================================
46** Modified by : VSG (MMM YYYY)
47**=======================================================================*/
48
49#ifndef _SO_GL_RENDER_ACTION_
50#define _SO_GL_RENDER_ACTION_
51
52#include <Inventor/SbViewportRegion.h>
53#include <Inventor/nodes/SoViewport.h>
54#include <Inventor/actions/SoSubAction.h>
55#include <Inventor/elements/SoShapeStyleElement.h>
56#include <Inventor/elements/SoDecimationTypeElement.h>
57#include <Inventor/lists/SoPathList.h>
58#include <Inventor/lists/SoSensorList.h>
59
60#ifdef _MSC_VER
61#pragma warning( push )
62#pragma warning(disable:4251)
63#endif
64
65class SbBox3f;
67class SoGLDepthPeeling;
68class SoCache;
69class SoCamera;
70class SoSeparator;
71class SoGLRenderActionSync;
72class SoGLRenderActionImpl;
73
74
82typedef void SoGLRenderPassCB(void *userData);
83
85//
86// Class: SoGLRenderAction
87//
88// GL rendering action.
89//
91
193
194 SO_ACTION_HEADER(SoGLRenderAction);
195
196 public:
197
232 {
233SoDEPRECATED
236
246
262
269
307
308 };
309
373
380
385
390
394 DELAY
395 };
396
402 typedef AbortCode SoGLRenderAbortCB(void *userData);
403
424
429 SoGLRenderAction(const SbViewportRegion &viewportRegion);
430
431#ifndef HIDDEN_FROM_DOC
432 // Destructor
433 virtual ~SoGLRenderAction();
434#endif // HIDDEN_FROM_DOC
435
439 void setViewportRegion(const SbViewportRegion &newRegion);
440
444 const SbViewportRegion &getViewportRegion() const { return vpRegion; }
445
450 void setLogicalViewportRegion(const SbViewportRegion &newLogicalRegion);
451
456
465 void setUpdateArea(const SbVec2f &origin, const SbVec2f &size);
466
470 void getUpdateArea(SbVec2f &origin, SbVec2f &size) const;
471
480 void setAbortCallback(SoGLRenderAbortCB *func, void *userData)
481 { abortCB = func; abortData = userData; }
482
517
523 { return m_transpType; }
524
534 void setFastEditSavePolicy(FastEditSavePolicy policy, SbBool fastEditDelayedObjects = FALSE);
535
540 { return m_fastEditPolicy; }
541SoDEPRECATED
552 void setSmoothing(SbBool smooth);
553SoDEPRECATED
558 SbBool isSmoothing() const { return doSmooth; }
559
575 void setNumPasses(int num);
576
580 int getNumPasses() const { return numPasses; }
581
586 void setPassUpdate(SbBool flag) { passUpdate = flag; }
587
595 SbBool isPassUpdate() const { return passUpdate; }
596
602 void setPassCallback(SoGLRenderPassCB *func, void *userData)
603 { passCB = func; passData = userData; }
604
613 void setCacheContext(uint32_t context);
614
618 uint32_t getCacheContext() const;
619
624 static uint32_t generateCacheContext();
625
629 static bool isUsedCacheContext( uint32_t context );
630
657 { m_sortedLayersNumPasses = num; }
658
659
666 { return m_sortedLayersNumPasses ; }
667
674
691 void setAlphaTest( SbBool flag );
692
697 { return m_alphaTest; }
698
699
714
718 virtual void invalidateState();
719
726 float percentage = 1.0);
727
732
737 float getDecimationPercentage() { return decPercent; };
738
755
760
768 uint32_t getFrameCounter() const { return m_frameCounter; }
769
774 void resetFrameCounter( uint32_t count = 0 ) { m_frameCounter = count; }
775
777 virtual void apply(SoNode* node);
778
780 virtual void apply(SoPath* path);
781
783 virtual void apply(const SoPathList& pathList, SbBool obeysRules = FALSE);
784
798
805
806private:
808 inline bool isDoingDepthPeeling() const { return m_isDoingDepthPeeling; }
809
813 int getDepthPeelingPass();
814
819 void enableDepthPeeling3D(bool flag) const;
820
821 SoGLDepthPeeling* getDepthPeelingInterface() const;
822
823 // Returns current rendering pass number
824 int getCurPass() const { return curPass; }
825
826 // Returns TRUE if render action should abort - checks user callback
827 SbBool abortNow()
828 { return (hasTerminated() || (abortCB != NULL && checkAbort())); }
829
830 // Returns TRUE if render action handles processing of a
831 // transparent object (if it is to be sorted and rendered later).
832 // If this returns FALSE, the object should just go ahead and
833 // render itself.
834 // The optional argument isTransparent ensures that the object being
835 // rendered will be taken as transparent, regardless of transparency
836 // in the state. If it is false, the state is checked for transparency.
837 virtual SbBool handleTransparency(SbBool isTransparent = FALSE, SbBool isLinesOrPoints = FALSE);
838
840 virtual void setUpState();
841
846 void setDelayedObjDepthWrite( SbBool flag ) { m_delayedObjDepthWrite = flag; }
847
852 SbBool getDelayedObjDepthWrite() const { return m_delayedObjDepthWrite; }
853
860 virtual bool preDelayedTraversal();
861
868 virtual void postDelayedTraversal();
869
875 void setCache( SoCache* cache );
876
878 SoCache* getCache() const;
879
880 private:
881 static void initClass();
882 static void exitClass();
883
885 inline bool isFloatingPointFramebuffer() const { return m_floatingPointFramebuffer; }
886 inline void setFloatingPointFramebuffer(bool flag) { m_floatingPointFramebuffer = flag; }
887
888 // Returns TRUE if rendering is being delayed because of transparency sorting or delaying
889 SbBool isDelaying() const { return delayObjs; }
890
891 // Returns true if the current state contains any transparency
892 bool stateContainsTransparency() const;
893
894 // Used in SoLocateHighlight in order to clear the transparent path cache
895 void removeAllDelayedPath();
896
897 bool isTraversalPassTransparent() const;
898
899 bool handleFastEdit(SoSeparator* sep);
900
901 int getCullTestResults() { return cullBits; }
902 void setCullTestResults(int b) { cullBits = b; }
903
904 SbBool isLogicalRegionSet() const;
905
906 void setTiledViewportRegion(const SbVec4f& region, int info = 0);
907
912 void setMaxDepthOffset(float maxDepthOffset);
913
914/* FAST EDIT METHODS*/
915 // set the buffer type.
916 void setDoubleBuffer(SbBool db);
917 // The main scene must be redrawn.
918 void setForceRender();
919 // Set viewing mode (from viewer).
920 void setViewing(SbBool viewing);
921 // Is there any delayed object to render ?
922 SbBool hasDelayedNodesToRender() const;
923 // initialize the start of a stereo pass.
924 void setFirstStereoPass(SbBool first);
925
926 SoPathList transpPaths; // Keep for compatibility. should be removed in OIV 9.2
927
928 void setRenderingFromOffscreen(SbBool renderFromOffscreen)
929 { m_renderingFromOffscreen = renderFromOffscreen; }
930
931 SbBool getRenderingFromOffscreen() const
932 { return m_renderingFromOffscreen; }
933
934 //Return true after an apply if there were transparent objects
935 //(used in SoLocateHighlight in order to redraw the whole scene only in this case)
936 SbBool hasDrawnTransparentObjs() const
937 { return m_hasDrawnTransparentObjs; }
938
939 // Set the fullscene antialiasing element
940 void setFullSceneAntialiasingElement( SbBool enable, int filterMask );
941
942 // Set the number of samples for MSAA
943 void setMSNumSamples(int numSamples);
944
946 enum RenderMode {
950 ALL_OBJECTS,
954 OPAQUE_OBJECTS,
958 DELAYED_OBJECTS
959 };
960
961 //
962 // Allow to restrict which object will be render during the next ::render call.
963 // After the ::render call, this mode is reset to its default value.
964 // Note : this is used by ScaleViz Depth compositing to manage delayed object.
965 void setRestrictObjectRenderingMode( const RenderMode mode = ALL_OBJECTS )
966 { m_restrictObjectRendering = mode; };
967
968 int getRestrictObjectRenderingMode() const
969 { return m_restrictObjectRendering; };
970
971 SoGLRenderActionSync* getSynchronizer() const;
972 void setSynchronizer( SoGLRenderActionSync* );
973
974 virtual void updateParametersFrom( SoGLRenderAction* );
975 SoGLRenderPassCB* getPassCallback( void*& data )
976 {
977 data = passData;
978 return passCB;
979 }
980
981 SoGLRenderActionImpl* getImpl();
982
983 // Used to temporary change the depth peeling interface, used
984 // for depth only. Returns the value in use before the call.
985 SoGLDepthPeeling* setDepthPeelingInterface(SoGLDepthPeeling*);
986
987 bool isFastEditManipulating();
988
989 SoPathList delayedPaths; // Keep for compatibility. should be removed in OIV 9.2
990
996 bool isLazyEvaluating() const { return m_lazyEvaluating; }
997 void setLazyEvaluating(bool value) { m_lazyEvaluating = value; }
998
999 void copyParametersFrom( SoGLRenderAction* action );
1000
1001 SoViewport* getViewportNode() const
1002 {
1003 return m_viewport.ptr();
1004 }
1005
1006 // These flags determine which things have to be sent to GL when
1007 // the action is applied. They indicate what's changed since the
1008 // last time the action was applied.
1009 enum flags {
1010 TRANSPARENCY_TYPE = 0x01,
1011 SMOOTHING = 0x02,
1012 ALPHA_TEST = 0x04,
1013 FASTEDIT_SAVE_POLICY = 0x08,
1014 SCENE_GRAPH = 0x10,
1015 ANTIALIASING = 0x20,
1016 ALL = 0x3F // Initial value
1017 };
1018
1019private:
1020 // Initiates action on graph
1021 virtual void beginTraversal(SoNode *node);
1022
1023SoINTERNAL private:
1024 // used internally to temporary change the fastEditPolicy without reseting any caches
1025 void setFastEditSavePolicyInternal(FastEditSavePolicy policy)
1026 { m_fastEditPolicy = policy; }
1027
1028 // used internally to temporary change the transparencyType without reseting any caches
1029 void setTransparencyTypeInternal(TransparencyType type)
1030 { m_transpType = type; }
1031
1032 uint32_t getWhatChanged() const
1033 {
1034 return whatChanged;
1035 }
1036
1037private:
1038
1040 template<typename ApplyType> void commonApply(ApplyType applyObject, SbBool obeysRules);
1041
1043 template<typename ApplyType> void applyTo(ApplyType applyObject, SbBool obeysRules);
1044
1045 SoGLRenderActionSync* m_synchronizer;
1046
1047 FastEditSavePolicy m_fastEditPolicy; // Transparency quality type
1048 TransparencyType m_transpType; // Transparency quality type
1049
1053 void removeInvalidPaths();
1054
1056 bool m_isDoingDepthPeeling;
1057
1058 SbBool m_hasDrawnTransparentObjs;
1059 SbBool m_isViewing;
1060 SoNode* m_appliedNode;
1061 SbBool m_isFirstApply;
1062 SbBool m_firstStereoPass;
1063 int m_lastStereoMode;
1064
1065 int m_useCacheOpt;
1066 int m_useCompactPaths;
1067
1068 SbViewportRegion vpRegion; // Current viewport region
1069
1070 // super viewport node that manage viewport, modify viewport and logical viewport
1071 SoRef<SoViewport> m_viewport;
1072
1076 SoRef<SoNode> m_maxDepthOffset;
1077
1078 SbVec2f updateOrigin; // Origin of update area
1079 SbVec2f updateSize; // Size of update area
1080
1081
1082 // Variables for render abort:
1083 SoGLRenderAbortCB *abortCB; // Callback to test abort
1084 void *abortData; // User data for abort callback
1085
1086 // Variables for transparency, smoothing, and multi-pass rendering:
1087 SbBool doSmooth; // Doing smoothing ?
1088 int numPasses; // Number of rendering passes
1089 int curPass; // Current pass
1090 SbBool passUpdate; // Whether to update after each pass
1091 SoGLRenderPassCB *passCB; // Callback between passes
1092 void *passData; // User data for pass callback
1093
1094 // For SORTED_OBJECT transparency:
1095 SbBool delayObjs; // TRUE if transp objects are to be delayed until after opaque ones
1096
1097 SbBool remoteRendering;// Remote rendering?
1098
1099 // BA 2/98 - added decimation variables
1100 SoDecimationTypeElement::Type decType; // Decimation type
1101 float decPercent; // Decimation percentage
1102
1103 uint32_t whatChanged;
1104
1105 // Enables or disables GL blending
1106 void enableBlending(SbBool enable);
1107
1108 // Enables or disables GL smoothing
1109 void enableSmoothing(SbBool enable);
1110
1111 // Returns TRUE if render action should abort based on callback
1112 SbBool checkAbort();
1113
1114 // Keep track of which planes we need to view-volume cull test
1115 // against:
1116 int cullBits;
1117
1118 SbBool m_delayedObjDepthWrite;
1119
1120 // Indicates if the next render is asked for Offscreen
1121 SbBool m_renderingFromOffscreen;
1122
1123 SbBool m_alphaTest;
1124
1125 // Count frames rendered with this action (for debugging)
1126 uint32_t m_frameCounter;
1127
1128 // indicate if action is currently called to evaluate lazy eval or for classical traversal.
1129 // See isLazyEvaluating() doc for details.
1130 bool m_lazyEvaluating;
1131
1132 //================== Begin sorted layers rendering ========================
1133
1134 int m_sortedLayersNumPasses ;
1135
1136 // Realizes a sorted layers rendering using depth peeling technics.
1137 void renderSortedLayers(SoNode *node) ;
1138 void initDepthPeeling(SoNode *node);
1139
1140 // Rendering callback for sorted layers rendering.
1141 static void renderSortedLayersCB(void *userData, SoGLDepthPeeling *mgr) ;
1142
1143 SoGLDepthPeeling *m_glDepthPeeling ;
1144
1145 static void cameraPostCB( SoCamera *camera, SoGLRenderAction* renderAction );
1146 bool m_ignoreCameraPostCB;
1147 //================== End Sorted layers rendering ========================
1148
1149
1150 InvalidateCacheMode m_invalidateAllCaches;
1151 RenderMode m_restrictObjectRendering;
1152
1153 bool m_floatingPointFramebuffer;
1154
1155 //================ FSAA element management ============================
1156 SbBool m_fsaaEnable;
1157 int m_fsaaFilterMask;
1158 int m_fsaaNumSamples;
1159
1160 SoGLRenderActionImpl* m_impl;
1161};
1162
1163
1164// INLINE METHODS
1165inline SoGLRenderActionSync* SoGLRenderAction::getSynchronizer() const
1166{
1167 return m_synchronizer;
1168}
1169
1170inline SoGLRenderActionImpl* SoGLRenderAction::getImpl()
1171{
1172 return m_impl;
1173}
1174
1175#ifdef _MSC_VER
1176#pragma warning( pop )
1177#endif
1178#endif /* _SO_GL_RENDER_ACTION_ */
1179
3D box class.
Definition SbBox.h:649
2D vector class.
Definition SbVec.h:76
4D vector class.
Definition SbVec.h:2214
Class for representing a viewport.
Abstract base class for all actions.
Definition SoAction.h:132
SbBool hasTerminated() const
Returns TRUE if the traversal has reached a termination condition.
Definition SoAction.h:430
Abstract base class for camera nodes.
Definition SoCamera.h:188
Type
These are the available decimation types.
Renders a scene graph using Open Inventor's Render Engine.
AbortCode
Possible return codes from a render abort callback.
@ DELAY
Delay rendering of this node until the second pass.
@ ABORT
Stop traversing the rest of the graph.
@ PRUNE
Do not traverse this node or its children, but continue.
@ CONTINUE
Continue traversal as usual.
FastEditSavePolicy
Fast edit traversal types.
@ DISABLE
Fast editing is disabled.
@ WHEN_NEEDED
The fast edit feature is available.
@ EACH_FRAME
The fast edit feature is available.
float getDecimationPercentage()
Gets decimation percentage, the value should be a number between 0.0 and 1.0.
void setAlphaTest(SbBool flag)
Enable or disable the OpenGL alpha test for rendering.
int getSortedLayersNumPasses() const
Returns the number of rendering passes used when transparency type is SORTED_PIXEL.
void SoGLRenderPassCB(void *userData)
Callback functions used between rendering passes should be of this type.
AutoCacheMode
Two bits are stored.
InvalidateCacheMode
Invalidate cache mode.
@ OFF
(Default) Render caches are handled normally.
@ ONCE
Render caches are invalidated for each SoSeparator node before its children are traversed.
@ ALWAYS
Render caches are invalidated for each SoSeparator node before its children are traversed.
virtual void invalidateState()
Invalidate the state, forcing it to be recreated at the next apply.
const SbViewportRegion & getLogicalViewportRegion() const
Returns current logical viewport region.
static uint32_t generateCacheContext()
Generates and returns a new cache context id.
TransparencyType getTransparencyType() const
Returns transparency quality level to use when rendering.
virtual void apply(SoNode *node)
Initiates an action on the graph defined by a node.
SoDEPRECATED void setSmoothing(SbBool smooth)
Sets smoothing flag.
void setDecimationValue(SoDecimationTypeElement::Type type, float percentage=1.0)
Sets decimation percentage, the value should be a number between 0.0 and 1.0 Useful for reducing the ...
void setTransparencyType(TransparencyType type)
Sets global transparency algorithm to use when rendering.
SbBool isAlphaTest() const
Returns whether the OpenGL alpha test is enabled for rendering.
void setSortedLayersNumPasses(int num)
Sets the number of rendering passes used when transparency type is SORTED_PIXEL.
void setFastEditSavePolicy(FastEditSavePolicy policy, SbBool fastEditDelayedObjects=FALSE)
Sets fast editing save policy to use when rendering.
AbortCode SoGLRenderAbortCB(void *userData)
Callback functions for render abort should be of this type.
void setPassUpdate(SbBool flag)
Sets a flag indicating whether intermediate results are displayed after each antialiasing pass for pr...
void setAbortCallback(SoGLRenderAbortCB *func, void *userData)
Sets callback to call during rendering to test for an abort condition.
void setCacheContext(uint32_t context)
Sets the OpenGL cache context.
SoGLRenderAction(const SbViewportRegion &viewportRegion)
Constructor.
virtual void apply(const SoPathList &pathList, SbBool obeysRules=FALSE)
Initiates an action on the graph defined by a list of paths.
SoDEPRECATED SbBool isSmoothing() const
Returns smoothing flag.
void shouldAutoCache(AutoCacheMode mode)
Called by nodes to say that they should/shouldn't be auto-cached (pass TRUE if should,...
SbBool getRenderingIsRemote() const
Returns TRUE if remote rendering is being done.
void setLogicalViewportRegion(const SbViewportRegion &newLogicalRegion)
Sets current logical viewport region to use for rendering.
const SbViewportRegion & getViewportRegion() const
Returns viewport region to use for rendering.
void resetFrameCounter(uint32_t count=0)
Reset the frame counter.
TransparencyType
Transparency rendering algorithm.
@ OPAQUE_FIRST
Same as NO_SORT, but the rendering of opaque objects is performed before the rendering of semi-transp...
@ SORTED_PIXEL
Same as OPAQUE_FIRST, but uses a fragment-level depth sorting technique during the rendering of semi-...
@ NO_SORT
The simplest transparency mode.
@ SORTED_OBJECT
Same as OPAQUE_FIRST, but sorts semi-transparent objects by distances of bounding boxes from camera.
virtual void apply(SoPath *path)
Initiates an action on the graph defined by a path.
SoDecimationTypeElement::Type getDecimationType()
Gets decimation type.
uint32_t getCacheContext() const
Returns the OpenGL cache context id for this action.
uint32_t getFrameCounter() const
Returns the current frame counter.
void setPassCallback(SoGLRenderPassCB *func, void *userData)
Sets a callback function to invoke between passes when antialiasing.
static bool isUsedCacheContext(uint32_t context)
Returns TRUE if the specified cache context id is currently used by any SoGLRenderAction.
static SbBool isSortedLayersSupported(SoState *state=NULL)
Indicates if SORTED_PIXEL transparency is supported by your graphics board on the current context.
void setRenderingIsRemote(SbBool flag)
Sets whether or not "remote" rendering is done.
FastEditSavePolicy getFastEditSavePolicy() const
Returns fast editing save policy used when rendering.
SbBool isPassUpdate() const
Returns a flag indicating whether intermediate results are displayed after each antialiasing pass for...
InvalidateCacheMode getInvalidateCacheMode()
Returns the current cache invalidation mode.
void getUpdateArea(SbVec2f &origin, SbVec2f &size) const
Returns the current update area.
void setViewportRegion(const SbViewportRegion &newRegion)
Changes viewport region to use for rendering.
int getNumPasses() const
Gets number of rendering passes for multipass rendering.
void setNumPasses(int num)
Sets number of rendering passes for multipass antialiasing.
void setInvalidateCacheMode(InvalidateCacheMode icm)
Enables or disables the invalidation of render caches.
void setUpdateArea(const SbVec2f &origin, const SbVec2f &size)
Sets the current update area, which is the rectangular area of the viewport region that will actually...
Computes bounding box of a scene.
Abstract base class for all database nodes.
Definition SoNode.h:145
Path that points to a list of hierarchical nodes.
Definition SoPath.h:187
Maintains a list of pointers to paths.
Definition SoPathList.h:81
Smart pointer for any class inheriting SoRefCounter.
Definition SoRef.h:90
T * ptr() const
Cast to C pointer.
Definition SoRef.h:167
Group node that saves and restores traversal state.
Traversal state.
Definition SoState.h:74
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Viewport paramet...
Definition SoViewport.h:103
int SbBool
Boolean type.
Definition SbBase.h:87