summaryrefslogtreecommitdiff
path: root/progs/egl/openvg/trivial/eglcommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'progs/egl/openvg/trivial/eglcommon.h')
-rw-r--r--progs/egl/openvg/trivial/eglcommon.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/progs/egl/openvg/trivial/eglcommon.h b/progs/egl/openvg/trivial/eglcommon.h
deleted file mode 100644
index 958dae9f98..0000000000
--- a/progs/egl/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