add error check and log for xcb_create_window
This commit is contained in:
parent
3e3528cc15
commit
9bc504ebdb
|
@ -28,7 +28,7 @@ xcb_window_t create_window(xcb_connection_t *conn, Rect dims,
|
||||||
visual = XCB_COPY_FROM_PARENT;
|
visual = XCB_COPY_FROM_PARENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
xcb_create_window(conn,
|
xcb_void_cookie_t gc_cookie = xcb_create_window(conn,
|
||||||
depth,
|
depth,
|
||||||
result, /* the window id */
|
result, /* the window id */
|
||||||
root, /* parent == root */
|
root, /* parent == root */
|
||||||
|
@ -39,6 +39,11 @@ xcb_window_t create_window(xcb_connection_t *conn, Rect dims,
|
||||||
mask,
|
mask,
|
||||||
values);
|
values);
|
||||||
|
|
||||||
|
xcb_generic_error_t *error = xcb_request_check(conn, gc_cookie);
|
||||||
|
if (error != NULL) {
|
||||||
|
ELOG("Could not create window. Error code: %d.\n", error->error_code);
|
||||||
|
}
|
||||||
|
|
||||||
/* Set the cursor */
|
/* Set the cursor */
|
||||||
if (xcursor_supported) {
|
if (xcursor_supported) {
|
||||||
mask = XCB_CW_CURSOR;
|
mask = XCB_CW_CURSOR;
|
||||||
|
|
Loading…
Reference in New Issue