Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://coin3d.github.io
https://www.kongsberg.com/en/kogt/
SoProfilerOverlayKit.h
1#ifndef COIN_SOPROFILEROVERLAYKIT_H
2#define COIN_SOPROFILEROVERLAYKIT_H
3
4#include <Inventor/nodekits/SoBaseKit.h>
5#include <Inventor/nodekits/SoSubKit.h>
6#include <Inventor/fields/SoSFVec3f.h>
7
8class COIN_DLL_API SoProfilerOverlayKit : public SoBaseKit {
9 typedef SoBaseKit inherited;
10 SO_KIT_HEADER(SoProfilerOverlayKit);
11 SO_KIT_CATALOG_ENTRY_HEADER(topSeparator);
12 SO_KIT_CATALOG_ENTRY_HEADER(profilingStats);
13 SO_KIT_CATALOG_ENTRY_HEADER(viewportInfo);
14 SO_KIT_CATALOG_ENTRY_HEADER(overlayCamera);
15 SO_KIT_CATALOG_ENTRY_HEADER(depthTestOff);
16 SO_KIT_CATALOG_ENTRY_HEADER(overlaySep);
17 SO_KIT_CATALOG_ENTRY_HEADER(depthTestOn);
18
19public:
20 static void initClass(void);
22
23 SoSFVec3f viewportSize; // output in pixels for internal use
24
25 void addOverlayGeometry(SoNode * node);
26
27protected:
28 virtual ~SoProfilerOverlayKit(void);
29
30private:
31 struct SoProfilerOverlayKitP * pimpl;
32};
33
34#endif // !COIN_SOPROFILEROVERLAYKIT_H
static void initClass(void)
Definition SoBaseKit.cpp:678
SoBaseKit(void)
Definition SoBaseKit.cpp:630
SoNode(void)
Definition SoNode.cpp:417
SoProfilerOverlayKit(void)
Definition SoProfilerOverlayKit.cpp:103
void addOverlayGeometry(SoNode *node)
Definition SoProfilerOverlayKit.cpp:155
The SoSFVec3f class is a container for an SbVec3f vector.
Definition SoSFVec3f.h:40