Lines Matching refs:height
35 static int create_window(void *win_display, int x, int y, int width, int height);
36 static int check_window_event(void *x11_display, void *drawable, int *width, int *height, int *quit…
52 static Pixmap create_pixmap(void *win_display, int width, int height) in create_pixmap() argument
64 …e a pixmap from ROOT window %dx%d, pixmap size %dx%d\n\n", attr.width, attr.height, width, height); in create_pixmap()
65 pixmap = XCreatePixmap(x11_display, root, width, height, in create_pixmap()
71 static int create_window(void *win_display, int x, int y, int width, int height) in create_window() argument
80 drawable_thread0 = (void *)XCreateSimpleWindow(x11_display, root, x, y, width, height, in create_window()
87 sizehints.height = height; in create_window()
101 drawable_thread0 = (void *)create_pixmap(x11_display, width, height); in create_window()
109 drawable_thread1 = (void *)XCreateSimpleWindow(x11_display, root, width, 0, width, height, in create_window()
115 sizehints.height = height; in create_window()
125 drawable_thread1 = (void *)create_pixmap(x11_display, width, height); 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
163 *height = event.xconfigure.height; in check_window_event()
164 printf("Scale window to %dx%d\n", width, height); in check_window_event()