xcb_renderutil.h | xcb_renderutil.h | |||
---|---|---|---|---|
skipping to change at line 30 | skipping to change at line 30 | |||
* Except as contained in this notice, the names of the authors or their | * Except as contained in this notice, the names of the authors or their | |||
* institutions shall not be used in advertising or otherwise to promote th e | * institutions shall not be used in advertising or otherwise to promote th e | |||
* sale, use or other dealings in this Software without prior written | * sale, use or other dealings in this Software without prior written | |||
* authorization from the authors. | * authorization from the authors. | |||
*/ | */ | |||
#ifndef XCB_RENDERUTIL | #ifndef XCB_RENDERUTIL | |||
#define XCB_RENDERUTIL | #define XCB_RENDERUTIL | |||
#include <xcb/render.h> | #include <xcb/render.h> | |||
#ifdef __cplusplus | ||||
extern "C" { | ||||
#endif | ||||
typedef enum xcb_pict_format_t { | typedef enum xcb_pict_format_t { | |||
XCB_PICT_FORMAT_ID = (1 << 0), | XCB_PICT_FORMAT_ID = (1 << 0), | |||
XCB_PICT_FORMAT_TYPE = (1 << 1), | XCB_PICT_FORMAT_TYPE = (1 << 1), | |||
XCB_PICT_FORMAT_DEPTH = (1 << 2), | XCB_PICT_FORMAT_DEPTH = (1 << 2), | |||
XCB_PICT_FORMAT_RED = (1 << 3), | XCB_PICT_FORMAT_RED = (1 << 3), | |||
XCB_PICT_FORMAT_RED_MASK = (1 << 4), | XCB_PICT_FORMAT_RED_MASK = (1 << 4), | |||
XCB_PICT_FORMAT_GREEN = (1 << 5), | XCB_PICT_FORMAT_GREEN = (1 << 5), | |||
XCB_PICT_FORMAT_GREEN_MASK = (1 << 6), | XCB_PICT_FORMAT_GREEN_MASK = (1 << 6), | |||
XCB_PICT_FORMAT_BLUE = (1 << 7), | XCB_PICT_FORMAT_BLUE = (1 << 7), | |||
XCB_PICT_FORMAT_BLUE_MASK = (1 << 8), | XCB_PICT_FORMAT_BLUE_MASK = (1 << 8), | |||
skipping to change at line 60 | skipping to change at line 64 | |||
XCB_PICT_STANDARD_A_1 | XCB_PICT_STANDARD_A_1 | |||
} xcb_pict_standard_t; | } xcb_pict_standard_t; | |||
xcb_render_pictvisual_t * | xcb_render_pictvisual_t * | |||
xcb_render_util_find_visual_format (const xcb_render_query_pict_formats_rep ly_t *formats, | xcb_render_util_find_visual_format (const xcb_render_query_pict_formats_rep ly_t *formats, | |||
const xcb_visualid_t visual); | const xcb_visualid_t visual); | |||
xcb_render_pictforminfo_t * | xcb_render_pictforminfo_t * | |||
xcb_render_util_find_format (const xcb_render_query_pict_formats_reply_t *formats, | xcb_render_util_find_format (const xcb_render_query_pict_formats_reply_t *formats, | |||
unsigned long mask, | unsigned long mask, | |||
const xcb_render_pictforminfo_t *tem plate, | const xcb_render_pictforminfo_t *pte mplate, | |||
int count); | int count); | |||
xcb_render_pictforminfo_t * | xcb_render_pictforminfo_t * | |||
xcb_render_util_find_standard_format (const xcb_render_query_pict_formats_r eply_t *formats, | xcb_render_util_find_standard_format (const xcb_render_query_pict_formats_r eply_t *formats, | |||
xcb_pict_standard_t format); | xcb_pict_standard_t format); | |||
const xcb_render_query_version_reply_t * | const xcb_render_query_version_reply_t * | |||
xcb_render_util_query_version (xcb_connection_t *c); | xcb_render_util_query_version (xcb_connection_t *c); | |||
const xcb_render_query_pict_formats_reply_t * | const xcb_render_query_pict_formats_reply_t * | |||
skipping to change at line 141 | skipping to change at line 145 | |||
xcb_render_picture_t dst, | xcb_render_picture_t dst, | |||
xcb_render_pictformat_t mask_format, | xcb_render_pictformat_t mask_format, | |||
int16_t src_x, | int16_t src_x, | |||
int16_t src_y, | int16_t src_y, | |||
xcb_render_util_composite_text_stream_t *stream ); | xcb_render_util_composite_text_stream_t *stream ); | |||
void | void | |||
xcb_render_util_composite_text_free ( | xcb_render_util_composite_text_free ( | |||
xcb_render_util_composite_text_stream_t *stream ); | xcb_render_util_composite_text_stream_t *stream ); | |||
#ifdef __cplusplus | ||||
} | ||||
#endif | ||||
#endif /* XCB_RENDERUTIL */ | #endif /* XCB_RENDERUTIL */ | |||
End of changes. 3 change blocks. | ||||
1 lines changed or deleted | 9 lines changed or added | |||