aboutsummaryrefslogtreecommitdiffstats
path: root/progs/openvg/trivial/eglcommon.h
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2010-04-01 14:20:24 +0800
committerChia-I Wu <[email protected]>2010-04-01 22:25:48 +0800
commitfc3ddd4b566380e7684c780450016e3e191a4160 (patch)
tree539e4eb39fb89a9ebb83116deef9c5d5ebc57e4d /progs/openvg/trivial/eglcommon.h
parent7f231cab2b7c13ba70d6aa694f74b6d6eee6470f (diff)
progs/openvg: Move OpenVG demos to a subdirectory of progs/egl.
That is, move progs/openvg/demos to progs/egl/openvg, progs/openvg/trivial to progs/egl/openvg/trivial.
Diffstat (limited to 'progs/openvg/trivial/eglcommon.h')
-rw-r--r--progs/openvg/trivial/eglcommon.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/progs/openvg/trivial/eglcommon.h b/progs/openvg/trivial/eglcommon.h
deleted file mode 100644
index 958dae9f98d..00000000000
--- a/progs/openvg/trivial/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