Add support for the zoomed state to managed windows.
[gwm.git] / image.h
blobcf4123575b034e0580320ff3a740126ad6804f9f
1 #ifndef IMAGE_H
2 #define IMAGE_H
4 /* Like xcb_put_image (with XCB_IMAGE_FORMAT_Z_PIXMAP), but capable of
5 breaking the data into multiple requests if it's too big for the
6 server to handle in one. */
7 extern xcb_void_cookie_t put_image( xcb_drawable_t drawable, xcb_gcontext_t gc,
8 uint16_t width, uint16_t height, int16_t x,
9 int16_t y, uint8_t left_pad, uint8_t depth,
10 uint32_t len, const uint8_t *data );
12 #endif