TinyGL 0.4.1 for MinGW
oscontext.h
Go to the documentation of this file.
1#ifndef _tgl_osbuffer_h_
2#define _tgl_osbuffer_h_
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef struct {
9 void **zbs;
12 int xsize, ysize;
14
16ostgl_create_context(const int xsize,
17 const int ysize,
18 const int depth,
19 void **framebuffers,
20 const int numbuffers);
21void
23
24void
25ostgl_make_current(ostgl_context *context, const int index);
26
27void
29 const int xsize,
30 const int ysize,
31 void **framebuffers);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif /* _tgl_osbuffer_h_ */
void ostgl_resize(ostgl_context *context, const int xsize, const int ysize, void **framebuffers)
Definition: oscontext.c:75
void ostgl_make_current(ostgl_context *context, const int index)
Definition: oscontext.c:67
void ostgl_delete_context(ostgl_context *context)
Definition: oscontext.c:51
ostgl_context * ostgl_create_context(const int xsize, const int ysize, const int depth, void **framebuffers, const int numbuffers)
Definition: oscontext.c:11
void ** zbs
Definition: oscontext.h:9
void ** framebuffers
Definition: oscontext.h:10
int numbuffers
Definition: oscontext.h:11