Home
last modified time | relevance | path

Searched refs:win_display (Results 1 – 4 of 4) sorted by relevance

/hardware/intel/common/libva/test/putsurface/
Dputsurface_x11.c34 static void close_display(void *win_display);
35 static int create_window(void *win_display, int x, int y, int width, int height);
47 static void close_display(void *win_display) in close_display() argument
49 XCloseDisplay(win_display); in close_display()
52 static Pixmap create_pixmap(void *win_display, int width, int height) in create_pixmap() argument
54 Display *x11_display = (Display *)win_display; in create_pixmap()
71 static int create_window(void *win_display, int x, int y, int width, int height) in create_window() argument
73 Display *x11_display = (Display *)win_display; in create_window()
135 static int check_window_event(void *win_display, void *drawable, int *width, int *height, int *quit) in check_window_event() argument
140 Display *x11_display = (Display *)win_display; in check_window_event()
Dputsurface_android.cpp46 static void close_display(void *win_display);
47 static int create_window(void *win_display, int x, int y, int width, int height);
58 static void close_display(void *win_display) in close_display() argument
63 static int create_window(void *win_display, int x, int y, int width, int height) in create_window() argument
119 int check_window_event(void *win_display, void *drawble, int *width, int *height, int *quit) in check_window_event() argument
Dputsurface_wayland.c36 static void close_display(void *win_display);
37 static int create_window(void *win_display,
39 static int check_window_event(void *win_display, void *drawable,
222 close_display(void *win_display) in close_display() argument
224 struct display * const d = wl_display_get_user_data(win_display); in close_display()
244 create_window(void *win_display, int x, int y, int width, int height) in create_window() argument
246 struct wl_display * const display = win_display; in create_window()
284 void *win_display, in check_window_event() argument
291 struct wl_display * const display = win_display; in check_window_event()
Dputsurface_common.c61 static void *win_display; variable
493 check_window_event(win_display, drawable, &width, &height, &quit); in putsurface_thread()
624 win_display = (void *)open_display(); in main()
625 if (win_display == NULL) { in main()
629 create_window(win_display, win_x, win_y, win_width, win_height); in main()
631 va_dpy = vaGetDisplay(win_display); in main()
684 close_display(win_display); in main()