Home | History | Annotate | Download | only in putsurface

Lines Matching refs:win_display

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)
49 XCloseDisplay(win_display);
52 static Pixmap create_pixmap(void *win_display, int width, int height)
54 Display *x11_display = (Display *)win_display;
71 static int create_window(void *win_display, int x, int y, int width, int height)
73 Display *x11_display = (Display *)win_display;
135 static int check_window_event(void *win_display, void *drawable, int *width, int *height, int *quit)
140 Display *x11_display = (Display *)win_display;