X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fgldbg.h;h=ff844518ed68f715e0e3a5036be9b7d4ab95716c;hb=68bbf8f302d01d2ee82dee28b9f64cff3660e234;hp=5f75164539153b06554bd41fcae0528b6f639b88;hpb=c6b2f7585d51164dc32f4dd2a05855913e464c58;p=gldbg.git diff --git a/source/gldbg.h b/source/gldbg.h index 5f75164..ff84451 100644 --- a/source/gldbg.h +++ b/source/gldbg.h @@ -13,6 +13,7 @@ Distributed under the GPL #include #include #include "commandinterpreter.h" +#include "glstate.h" #include "process.h" #include "tracer.h" @@ -26,6 +27,7 @@ private: unsigned buf_offset; bool flushing; Tracer tracer; + GlState glstate; bool got_sigchld; static RegApp reg; @@ -34,6 +36,7 @@ public: GlDbg(int, char **); int main(); Tracer &get_tracer() { return tracer; } + GlState &get_glstate() { return glstate; } Process &get_process() { return process; } void launch(); void quit();