Searched refs:win_display (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/common/libva/test/putsurface/ |
D | putsurface_x11.c | 34 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()
|
D | putsurface_android.cpp | 46 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
|
D | putsurface_wayland.c | 36 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()
|
D | putsurface_common.c | 61 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()
|