]> git.tdb.fi Git - libs/gl.git/blobdiff - source/select.h
Get rid of the typedefs for fundamental types
[libs/gl.git] / source / select.h
index 680334f4e5688335a49ee23d3c5448d3b82203d9..16d0e47aac3f387b2c3baacb59785e66dabbd5de 100644 (file)
@@ -9,27 +9,26 @@ Distributed under the LGPL
 #define MSP_GL_SELECT_H_
 
 #include <vector>
-#include "types.h"
 
 namespace Msp {
 namespace GL {
                
 struct SelectRecord
 {
-       uint min_depth;
-       uint max_depth;
-       std::vector<uint> names;
+       unsigned min_depth;
+       unsigned max_depth;
+       std::vector<unsigned> names;
 };
 
 void select_buffer(std::vector<SelectRecord> &);
 void init_names();
-void push_name(uint);
+void push_name(unsigned);
 void pop_name();
-void load_name(uint);
+void load_name(unsigned);
 
-void parse_select_records(const uint *buf, uint, std::vector<SelectRecord> &);
+void parse_select_records(const unsigned *buf, unsigned, std::vector<SelectRecord> &);
 
-void _parse_internal_select_records(uint);
+void _parse_internal_select_records(unsigned);
 
 } // namespace GL
 } // namespace Msp