]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexformat.h
Get rid of the typedefs for fundamental types
[libs/gl.git] / source / vertexformat.h
index 75e33473227f542f9b856027349c6503d4361e96..2164a8fb2cf9f8515bcf1cfd3a442f9a68ffd441 100644 (file)
@@ -9,7 +9,6 @@ Distributed under the LGPL
 #define MSP_GL_VERTEXFORMAT_H_
 
 #include <istream>
-#include "types.h"
 
 namespace Msp {
 namespace GL {
@@ -57,7 +56,7 @@ VertexFormat operator,(const VertexFormat &f, unsigned i);
 inline VertexFormat operator,(VertexComponent c, unsigned i)
 { return (VertexFormat(c), i); }
 
-inline uint get_stride(const VertexFormat &f)
+inline unsigned get_stride(const VertexFormat &f)
 { return f.stride(); }
 
 std::istream &operator>>(std::istream &, VertexFormat &);