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 Implementation {
struct DebugState;
}
namespace Implementation { struct DebugState; }
/**
@brief Base for all OpenGL objects

7
src/Implementation/DebugState.h

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

Loading…
Cancel
Save