]> git.tdb.fi Git - libs/gl.git/blob - source/select.h
Add files
[libs/gl.git] / source / select.h
1 #ifndef MSP_GL_SELECT_H_
2 #define MSP_GL_SELECT_H_
3
4 #include <vector>
5
6 namespace Msp {
7 namespace GL {
8                 
9 struct SelectRecord
10 {
11         uint min_depth;
12         uint max_depth;
13         std::vector<uint> names;
14 };
15
16 void select_buffer(std::vector<SelectRecord> &);
17 void parse_select_records(const uint *buf, uint, std::vector<SelectRecord> &);
18
19 void _parse_internal_select_records(uint);
20
21 } // namespace GL
22 } // namespace Msp
23
24 #endif