1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 19:19:55 +00:00
openmw-tes3mp/components/misc/gldebug.hpp
2019-02-28 00:02:07 +00:00

16 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