]> git.tdb.fi Git - gldbg.git/blob - flavors/gl/source/inspector.h
Replace per-file license notices with License.txt
[gldbg.git] / flavors / gl / source / inspector.h
1 #ifndef INSPECTOR_H_
2 #define INSPECTOR_H_
3
4 #include "glstate.h"
5 #include "tool.h"
6
7 class Inspector: public RegisteredTool<Inspector>
8 {
9 private:
10         GlState state;
11
12 public:
13         Inspector(GlDbg &);
14
15         virtual void decode(const char *, unsigned);
16 private:
17         void cmd_state(const std::string &);
18         void cmd_texture(const std::string &);
19         void cmd_buffer(const std::string &);
20 };
21
22 #endif