mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 02:21:11 -04: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
|