]> git.tdb.fi Git - libs/gl.git/blobdiff - source/select.h
Remove rendermode and selection support due to lack of decent hardware support
[libs/gl.git] / source / select.h
diff --git a/source/select.h b/source/select.h
deleted file mode 100644 (file)
index 16d0e47..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_SELECT_H_
-#define MSP_GL_SELECT_H_
-
-#include <vector>
-
-namespace Msp {
-namespace GL {
-               
-struct SelectRecord
-{
-       unsigned min_depth;
-       unsigned max_depth;
-       std::vector<unsigned> names;
-};
-
-void select_buffer(std::vector<SelectRecord> &);
-void init_names();
-void push_name(unsigned);
-void pop_name();
-void load_name(unsigned);
-
-void parse_select_records(const unsigned *buf, unsigned, std::vector<SelectRecord> &);
-
-void _parse_internal_select_records(unsigned);
-
-} // namespace GL
-} // namespace Msp
-
-#endif