]> git.tdb.fi Git - gldbg.git/blob - source/gldecoder.h
Packetize the command stream for more robustness
[gldbg.git] / source / gldecoder.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef GLDECODER_H_
9 #define GLDECODER_H_
10
11 #include <GL/gl.h>
12 #include "gldecoder.struct"
13
14 GlDecoder *gldecoder_new(void *, void (*)(void *));
15 void gldecoder_delete(GlDecoder *);
16 int gldecoder_decode(GlDecoder *, const char *, unsigned);
17
18 #endif