]> git.tdb.fi Git - libs/gl.git/blobdiff - source/types.h
Get rid of the typedefs for fundamental types
[libs/gl.git] / source / types.h
diff --git a/source/types.h b/source/types.h
deleted file mode 100644 (file)
index eb07c72..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_TYPES_H_
-#define MSP_GL_TYPES_H_
-
-#include "gl.h"
-
-namespace Msp {
-namespace GL {
-
-enum DataType
-{
-       BYTE           = GL_BYTE,
-       UNSIGNED_BYTE  = GL_UNSIGNED_BYTE,
-       SHORT          = GL_SHORT,
-       UNSIGNED_SHORT = GL_UNSIGNED_SHORT,
-       INT            = GL_INT,
-       UNSIGNED_INT   = GL_UNSIGNED_INT,
-       FLOAT          = GL_FLOAT,
-       DOUBLE         = GL_DOUBLE
-};
-
-typedef signed char byte;
-typedef unsigned char ubyte;
-typedef unsigned sizei;
-typedef unsigned uint;
-
-} // namespace GL
-} // namespace Msp
-
-#endif