sgl

view src/sgl.c @ 3:1b6c5dadb460

started hacking the X11 module
author John Tsiombikas <nuclear@siggraph.org>
date Wed, 11 May 2011 09:09:43 +0300
parents 0c13a30be2c1
children 648f8604d2b2
line source
1 #include "sgl.h"
3 void sgl_register_modules(void);
5 int sgl_init(void)
6 {
7 sgl_register_modules();
8 sgl_sort_modules();
9 return 0;
10 }
12 int sgl_set_video_mode(int xsz, int ysz, int bpp)
13 {
14 return 0;
15 }
17 int sgl_get_video_mode(int *xsz, int *ysz, int *bpp)
18 {
19 return 0;
20 }
22 int sgl_window(int x, int y, unsigned int mode)
23 {
24 return 0;
25 }
27 void sgl_close(int win)
28 {
29 }