Browse Source

Minor cleanup.

pull/38/head
Vladimír Vondruš 13 years ago
parent
commit
dfd86079bc
  1. 4
      src/AbstractObject.h
  2. 7
      src/Implementation/DebugState.h

4
src/AbstractObject.h

@ -36,9 +36,7 @@
namespace Magnum { namespace Magnum {
namespace Implementation { namespace Implementation { struct DebugState; }
struct DebugState;
}
/** /**
@brief Base for all OpenGL objects @brief Base for all OpenGL objects

7
src/Implementation/DebugState.h

@ -34,11 +34,8 @@ namespace Magnum { namespace Implementation {
struct DebugState { struct DebugState {
DebugState(Context& context); DebugState(Context& context);
typedef std::string(*GetLabelImplementation)(GLenum, GLuint); std::string(*getLabelImplementation)(GLenum, GLuint);
GetLabelImplementation getLabelImplementation; void(*labelImplementation)(GLenum, GLuint, const std::string&);
typedef void(*LabelImplementation)(GLenum, GLuint, const std::string&);
LabelImplementation labelImplementation;
GLint maxLabelLength; GLint maxLabelLength;
}; };

Loading…
Cancel
Save