Initialize
[sdk/emulator/qemu.git] / target-arm / opengl_dummy.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <assert.h>
4 #include <string.h>
5 #include "debug_ch.h"
6
7 MULTI_DEBUG_CHANNEL(qemu, arm_dummy);
8
9 void *init_opengl_server(void *arg);
10
11 void *init_opengl_server(void *arg){
12     ERR("init_open_gl_server(arm_dummy) called!!!\n");
13     return 0;
14 }
15
16 #ifndef _WIN32
17 #include <X11/Xlib.h>
18 #include <X11/Xutil.h>
19 void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window);
20 void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window)
21 {
22     ERR("opengl_exec_set_parent_window(arm_dummy) called!!!\n");
23 }
24 #endif