mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-29 05:17:58 +03:00
17 lines
346 B
C++
17 lines
346 B
C++
![]() |
#ifndef OPENMW_COMPONENTS_MISC_GLDEBUG_H
|
||
|
#define OPENMW_COMPONENTS_MISC_GLDEBUG_H
|
||
|
|
||
|
#include <osgViewer/ViewerEventHandlers>
|
||
|
|
||
|
class EnableGLDebugOperation : public osg::GraphicsOperation
|
||
|
{
|
||
|
public:
|
||
|
EnableGLDebugOperation();
|
||
|
|
||
|
virtual void operator()(osg::GraphicsContext* graphicsContext);
|
||
|
|
||
|
private:
|
||
|
OpenThreads::Mutex mMutex;
|
||
|
};
|
||
|
#endif
|