summaryrefslogtreecommitdiffstats
path: root/progs/egl/openvg/eglcommon.h
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2010-04-01 22:03:54 +0800
committerChia-I Wu <[email protected]>2010-04-01 22:25:50 +0800
commit532b7400fd2959936c7344e4c38f6efbbef77924 (patch)
tree431508361332bb7a5f245867fd09dff33eaf894e /progs/egl/openvg/eglcommon.h
parent7b48d88407655dc135d7a3c2c47d9df3e8dff01e (diff)
progs/egl: Port OpenVG lion and sp to eglut.
Diffstat (limited to 'progs/egl/openvg/eglcommon.h')
-rw-r--r--progs/egl/openvg/eglcommon.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/progs/egl/openvg/eglcommon.h b/progs/egl/openvg/eglcommon.h
deleted file mode 100644
index 958dae9f98d..00000000000
--- a/progs/egl/openvg/eglcommon.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef EGLCOMMON_H
-#define EGLCOMMON_H
-
-typedef void (*init_func)();
-typedef void (*reshape_func)(int, int);
-typedef void (*draw_func)();
-typedef int (*key_func)(unsigned key);
-
-
-void set_window_size(int width, int height);
-int window_width(void);
-int window_height(void);
-
-int run(int argc, char **argv,
- init_func init,
- reshape_func resh,
- draw_func draw,
- key_func key);
-
-#endif