PageRenderTime 46ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/Shared/Build/Linux/x86/include/pixman-1/pixman.h

http://ossbuild.googlecode.com/
C Header | 936 lines | 699 code | 93 blank | 144 comment | 13 complexity | 19086ac214d73a6d0f780978a19ed903 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, GPL-2.0, AGPL-1.0, LGPL-2.1, LGPL-2.0, GPL-3.0, LGPL-3.0, CC-BY-SA-3.0
  1. /***********************************************************
  2. Copyright 1987, 1998 The Open Group
  3. Permission to use, copy, modify, distribute, and sell this software and its
  4. documentation for any purpose is hereby granted without fee, provided that
  5. the above copyright notice appear in all copies and that both that
  6. copyright notice and this permission notice appear in supporting
  7. documentation.
  8. The above copyright notice and this permission notice shall be included in
  9. all copies or substantial portions of the Software.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  11. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  12. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  13. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  14. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  16. Except as contained in this notice, the name of The Open Group shall not be
  17. used in advertising or otherwise to promote the sale, use or other dealings
  18. in this Software without prior written authorization from The Open Group.
  19. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  20. All Rights Reserved
  21. Permission to use, copy, modify, and distribute this software and its
  22. documentation for any purpose and without fee is hereby granted,
  23. provided that the above copyright notice appear in all copies and that
  24. both that copyright notice and this permission notice appear in
  25. supporting documentation, and that the name of Digital not be
  26. used in advertising or publicity pertaining to distribution of the
  27. software without specific, written prior permission.
  28. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  29. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  30. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  31. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  32. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  33. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  34. SOFTWARE.
  35. ******************************************************************/
  36. /*
  37. * Copyright Š 1998, 2004 Keith Packard
  38. * Copyright 2007 Red Hat, Inc.
  39. *
  40. * Permission to use, copy, modify, distribute, and sell this software and its
  41. * documentation for any purpose is hereby granted without fee, provided that
  42. * the above copyright notice appear in all copies and that both that
  43. * copyright notice and this permission notice appear in supporting
  44. * documentation, and that the name of Keith Packard not be used in
  45. * advertising or publicity pertaining to distribution of the software without
  46. * specific, written prior permission. Keith Packard makes no
  47. * representations about the suitability of this software for any purpose. It
  48. * is provided "as is" without express or implied warranty.
  49. *
  50. * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  51. * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  52. * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  53. * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  54. * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  55. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  56. * PERFORMANCE OF THIS SOFTWARE.
  57. */
  58. #ifndef PIXMAN_H__
  59. #define PIXMAN_H__
  60. #include <pixman-version.h>
  61. #ifdef __cplusplus
  62. #define PIXMAN_BEGIN_DECLS extern "C" {
  63. #define PIXMAN_END_DECLS }
  64. #else
  65. #define PIXMAN_BEGIN_DECLS
  66. #define PIXMAN_END_DECLS
  67. #endif
  68. PIXMAN_BEGIN_DECLS
  69. /*
  70. * Standard integers
  71. */
  72. #if !defined (PIXMAN_DONT_DEFINE_STDINT)
  73. #if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || defined (_sgi) || defined (__sun) || defined (sun) || defined (__digital__) || defined (__HP_cc)
  74. # include <inttypes.h>
  75. /* VS 2010 (_MSC_VER 1600) has stdint.h */
  76. #elif defined (_MSC_VER) && _MSC_VER < 1600
  77. typedef __int8 int8_t;
  78. typedef unsigned __int8 uint8_t;
  79. typedef __int16 int16_t;
  80. typedef unsigned __int16 uint16_t;
  81. typedef __int32 int32_t;
  82. typedef unsigned __int32 uint32_t;
  83. typedef __int64 int64_t;
  84. typedef unsigned __int64 uint64_t;
  85. #elif defined (_AIX)
  86. # include <sys/inttypes.h>
  87. #else
  88. # include <stdint.h>
  89. #endif
  90. #endif
  91. /*
  92. * Boolean
  93. */
  94. typedef int pixman_bool_t;
  95. /*
  96. * Fixpoint numbers
  97. */
  98. typedef int64_t pixman_fixed_32_32_t;
  99. typedef pixman_fixed_32_32_t pixman_fixed_48_16_t;
  100. typedef uint32_t pixman_fixed_1_31_t;
  101. typedef uint32_t pixman_fixed_1_16_t;
  102. typedef int32_t pixman_fixed_16_16_t;
  103. typedef pixman_fixed_16_16_t pixman_fixed_t;
  104. #define pixman_fixed_e ((pixman_fixed_t) 1)
  105. #define pixman_fixed_1 (pixman_int_to_fixed(1))
  106. #define pixman_fixed_1_minus_e (pixman_fixed_1 - pixman_fixed_e)
  107. #define pixman_fixed_minus_1 (pixman_int_to_fixed(-1))
  108. #define pixman_fixed_to_int(f) ((int) ((f) >> 16))
  109. #define pixman_int_to_fixed(i) ((pixman_fixed_t) ((i) << 16))
  110. #define pixman_fixed_to_double(f) (double) ((f) / (double) pixman_fixed_1)
  111. #define pixman_double_to_fixed(d) ((pixman_fixed_t) ((d) * 65536.0))
  112. #define pixman_fixed_frac(f) ((f) & pixman_fixed_1_minus_e)
  113. #define pixman_fixed_floor(f) ((f) & ~pixman_fixed_1_minus_e)
  114. #define pixman_fixed_ceil(f) pixman_fixed_floor ((f) + pixman_fixed_1_minus_e)
  115. #define pixman_fixed_fraction(f) ((f) & pixman_fixed_1_minus_e)
  116. #define pixman_fixed_mod_2(f) ((f) & (pixman_fixed1 | pixman_fixed_1_minus_e))
  117. #define pixman_max_fixed_48_16 ((pixman_fixed_48_16_t) 0x7fffffff)
  118. #define pixman_min_fixed_48_16 (-((pixman_fixed_48_16_t) 1 << 31))
  119. /*
  120. * Misc structs
  121. */
  122. typedef struct pixman_color pixman_color_t;
  123. typedef struct pixman_point_fixed pixman_point_fixed_t;
  124. typedef struct pixman_line_fixed pixman_line_fixed_t;
  125. typedef struct pixman_vector pixman_vector_t;
  126. typedef struct pixman_transform pixman_transform_t;
  127. struct pixman_color
  128. {
  129. uint16_t red;
  130. uint16_t green;
  131. uint16_t blue;
  132. uint16_t alpha;
  133. };
  134. struct pixman_point_fixed
  135. {
  136. pixman_fixed_t x;
  137. pixman_fixed_t y;
  138. };
  139. struct pixman_line_fixed
  140. {
  141. pixman_point_fixed_t p1, p2;
  142. };
  143. /*
  144. * Fixed point matrices
  145. */
  146. struct pixman_vector
  147. {
  148. pixman_fixed_t vector[3];
  149. };
  150. struct pixman_transform
  151. {
  152. pixman_fixed_t matrix[3][3];
  153. };
  154. /* forward declaration (sorry) */
  155. struct pixman_box16;
  156. typedef union pixman_image pixman_image_t;
  157. void pixman_transform_init_identity (struct pixman_transform *matrix);
  158. pixman_bool_t pixman_transform_point_3d (const struct pixman_transform *transform,
  159. struct pixman_vector *vector);
  160. pixman_bool_t pixman_transform_point (const struct pixman_transform *transform,
  161. struct pixman_vector *vector);
  162. pixman_bool_t pixman_transform_multiply (struct pixman_transform *dst,
  163. const struct pixman_transform *l,
  164. const struct pixman_transform *r);
  165. void pixman_transform_init_scale (struct pixman_transform *t,
  166. pixman_fixed_t sx,
  167. pixman_fixed_t sy);
  168. pixman_bool_t pixman_transform_scale (struct pixman_transform *forward,
  169. struct pixman_transform *reverse,
  170. pixman_fixed_t sx,
  171. pixman_fixed_t sy);
  172. void pixman_transform_init_rotate (struct pixman_transform *t,
  173. pixman_fixed_t cos,
  174. pixman_fixed_t sin);
  175. pixman_bool_t pixman_transform_rotate (struct pixman_transform *forward,
  176. struct pixman_transform *reverse,
  177. pixman_fixed_t c,
  178. pixman_fixed_t s);
  179. void pixman_transform_init_translate (struct pixman_transform *t,
  180. pixman_fixed_t tx,
  181. pixman_fixed_t ty);
  182. pixman_bool_t pixman_transform_translate (struct pixman_transform *forward,
  183. struct pixman_transform *reverse,
  184. pixman_fixed_t tx,
  185. pixman_fixed_t ty);
  186. pixman_bool_t pixman_transform_bounds (const struct pixman_transform *matrix,
  187. struct pixman_box16 *b);
  188. pixman_bool_t pixman_transform_invert (struct pixman_transform *dst,
  189. const struct pixman_transform *src);
  190. pixman_bool_t pixman_transform_is_identity (const struct pixman_transform *t);
  191. pixman_bool_t pixman_transform_is_scale (const struct pixman_transform *t);
  192. pixman_bool_t pixman_transform_is_int_translate (const struct pixman_transform *t);
  193. pixman_bool_t pixman_transform_is_inverse (const struct pixman_transform *a,
  194. const struct pixman_transform *b);
  195. /*
  196. * Floating point matrices
  197. */
  198. struct pixman_f_vector
  199. {
  200. double v[3];
  201. };
  202. struct pixman_f_transform
  203. {
  204. double m[3][3];
  205. };
  206. pixman_bool_t pixman_transform_from_pixman_f_transform (struct pixman_transform *t,
  207. const struct pixman_f_transform *ft);
  208. void pixman_f_transform_from_pixman_transform (struct pixman_f_transform *ft,
  209. const struct pixman_transform *t);
  210. pixman_bool_t pixman_f_transform_invert (struct pixman_f_transform *dst,
  211. const struct pixman_f_transform *src);
  212. pixman_bool_t pixman_f_transform_point (const struct pixman_f_transform *t,
  213. struct pixman_f_vector *v);
  214. void pixman_f_transform_point_3d (const struct pixman_f_transform *t,
  215. struct pixman_f_vector *v);
  216. void pixman_f_transform_multiply (struct pixman_f_transform *dst,
  217. const struct pixman_f_transform *l,
  218. const struct pixman_f_transform *r);
  219. void pixman_f_transform_init_scale (struct pixman_f_transform *t,
  220. double sx,
  221. double sy);
  222. pixman_bool_t pixman_f_transform_scale (struct pixman_f_transform *forward,
  223. struct pixman_f_transform *reverse,
  224. double sx,
  225. double sy);
  226. void pixman_f_transform_init_rotate (struct pixman_f_transform *t,
  227. double cos,
  228. double sin);
  229. pixman_bool_t pixman_f_transform_rotate (struct pixman_f_transform *forward,
  230. struct pixman_f_transform *reverse,
  231. double c,
  232. double s);
  233. void pixman_f_transform_init_translate (struct pixman_f_transform *t,
  234. double tx,
  235. double ty);
  236. pixman_bool_t pixman_f_transform_translate (struct pixman_f_transform *forward,
  237. struct pixman_f_transform *reverse,
  238. double tx,
  239. double ty);
  240. pixman_bool_t pixman_f_transform_bounds (const struct pixman_f_transform *t,
  241. struct pixman_box16 *b);
  242. void pixman_f_transform_init_identity (struct pixman_f_transform *t);
  243. typedef enum
  244. {
  245. PIXMAN_REPEAT_NONE,
  246. PIXMAN_REPEAT_NORMAL,
  247. PIXMAN_REPEAT_PAD,
  248. PIXMAN_REPEAT_REFLECT
  249. } pixman_repeat_t;
  250. typedef enum
  251. {
  252. PIXMAN_FILTER_FAST,
  253. PIXMAN_FILTER_GOOD,
  254. PIXMAN_FILTER_BEST,
  255. PIXMAN_FILTER_NEAREST,
  256. PIXMAN_FILTER_BILINEAR,
  257. PIXMAN_FILTER_CONVOLUTION
  258. } pixman_filter_t;
  259. typedef enum
  260. {
  261. PIXMAN_OP_CLEAR = 0x00,
  262. PIXMAN_OP_SRC = 0x01,
  263. PIXMAN_OP_DST = 0x02,
  264. PIXMAN_OP_OVER = 0x03,
  265. PIXMAN_OP_OVER_REVERSE = 0x04,
  266. PIXMAN_OP_IN = 0x05,
  267. PIXMAN_OP_IN_REVERSE = 0x06,
  268. PIXMAN_OP_OUT = 0x07,
  269. PIXMAN_OP_OUT_REVERSE = 0x08,
  270. PIXMAN_OP_ATOP = 0x09,
  271. PIXMAN_OP_ATOP_REVERSE = 0x0a,
  272. PIXMAN_OP_XOR = 0x0b,
  273. PIXMAN_OP_ADD = 0x0c,
  274. PIXMAN_OP_SATURATE = 0x0d,
  275. PIXMAN_OP_DISJOINT_CLEAR = 0x10,
  276. PIXMAN_OP_DISJOINT_SRC = 0x11,
  277. PIXMAN_OP_DISJOINT_DST = 0x12,
  278. PIXMAN_OP_DISJOINT_OVER = 0x13,
  279. PIXMAN_OP_DISJOINT_OVER_REVERSE = 0x14,
  280. PIXMAN_OP_DISJOINT_IN = 0x15,
  281. PIXMAN_OP_DISJOINT_IN_REVERSE = 0x16,
  282. PIXMAN_OP_DISJOINT_OUT = 0x17,
  283. PIXMAN_OP_DISJOINT_OUT_REVERSE = 0x18,
  284. PIXMAN_OP_DISJOINT_ATOP = 0x19,
  285. PIXMAN_OP_DISJOINT_ATOP_REVERSE = 0x1a,
  286. PIXMAN_OP_DISJOINT_XOR = 0x1b,
  287. PIXMAN_OP_CONJOINT_CLEAR = 0x20,
  288. PIXMAN_OP_CONJOINT_SRC = 0x21,
  289. PIXMAN_OP_CONJOINT_DST = 0x22,
  290. PIXMAN_OP_CONJOINT_OVER = 0x23,
  291. PIXMAN_OP_CONJOINT_OVER_REVERSE = 0x24,
  292. PIXMAN_OP_CONJOINT_IN = 0x25,
  293. PIXMAN_OP_CONJOINT_IN_REVERSE = 0x26,
  294. PIXMAN_OP_CONJOINT_OUT = 0x27,
  295. PIXMAN_OP_CONJOINT_OUT_REVERSE = 0x28,
  296. PIXMAN_OP_CONJOINT_ATOP = 0x29,
  297. PIXMAN_OP_CONJOINT_ATOP_REVERSE = 0x2a,
  298. PIXMAN_OP_CONJOINT_XOR = 0x2b,
  299. PIXMAN_OP_MULTIPLY = 0x30,
  300. PIXMAN_OP_SCREEN = 0x31,
  301. PIXMAN_OP_OVERLAY = 0x32,
  302. PIXMAN_OP_DARKEN = 0x33,
  303. PIXMAN_OP_LIGHTEN = 0x34,
  304. PIXMAN_OP_COLOR_DODGE = 0x35,
  305. PIXMAN_OP_COLOR_BURN = 0x36,
  306. PIXMAN_OP_HARD_LIGHT = 0x37,
  307. PIXMAN_OP_SOFT_LIGHT = 0x38,
  308. PIXMAN_OP_DIFFERENCE = 0x39,
  309. PIXMAN_OP_EXCLUSION = 0x3a,
  310. PIXMAN_OP_HSL_HUE = 0x3b,
  311. PIXMAN_OP_HSL_SATURATION = 0x3c,
  312. PIXMAN_OP_HSL_COLOR = 0x3d,
  313. PIXMAN_OP_HSL_LUMINOSITY = 0x3e
  314. #ifdef PIXMAN_USE_INTERNAL_API
  315. ,
  316. PIXMAN_N_OPERATORS,
  317. PIXMAN_OP_NONE = PIXMAN_N_OPERATORS
  318. #endif
  319. } pixman_op_t;
  320. /*
  321. * Regions
  322. */
  323. typedef struct pixman_region16_data pixman_region16_data_t;
  324. typedef struct pixman_box16 pixman_box16_t;
  325. typedef struct pixman_rectangle16 pixman_rectangle16_t;
  326. typedef struct pixman_region16 pixman_region16_t;
  327. struct pixman_region16_data {
  328. long size;
  329. long numRects;
  330. /* pixman_box16_t rects[size]; in memory but not explicitly declared */
  331. };
  332. struct pixman_rectangle16
  333. {
  334. int16_t x, y;
  335. uint16_t width, height;
  336. };
  337. struct pixman_box16
  338. {
  339. int16_t x1, y1, x2, y2;
  340. };
  341. struct pixman_region16
  342. {
  343. pixman_box16_t extents;
  344. pixman_region16_data_t *data;
  345. };
  346. typedef enum
  347. {
  348. PIXMAN_REGION_OUT,
  349. PIXMAN_REGION_IN,
  350. PIXMAN_REGION_PART
  351. } pixman_region_overlap_t;
  352. /* This function exists only to make it possible to preserve
  353. * the X ABI - it should go away at first opportunity.
  354. */
  355. void pixman_region_set_static_pointers (pixman_box16_t *empty_box,
  356. pixman_region16_data_t *empty_data,
  357. pixman_region16_data_t *broken_data);
  358. /* creation/destruction */
  359. void pixman_region_init (pixman_region16_t *region);
  360. void pixman_region_init_rect (pixman_region16_t *region,
  361. int x,
  362. int y,
  363. unsigned int width,
  364. unsigned int height);
  365. pixman_bool_t pixman_region_init_rects (pixman_region16_t *region,
  366. const pixman_box16_t *boxes,
  367. int count);
  368. void pixman_region_init_with_extents (pixman_region16_t *region,
  369. pixman_box16_t *extents);
  370. void pixman_region_init_from_image (pixman_region16_t *region,
  371. pixman_image_t *image);
  372. void pixman_region_fini (pixman_region16_t *region);
  373. /* manipulation */
  374. void pixman_region_translate (pixman_region16_t *region,
  375. int x,
  376. int y);
  377. pixman_bool_t pixman_region_copy (pixman_region16_t *dest,
  378. pixman_region16_t *source);
  379. pixman_bool_t pixman_region_intersect (pixman_region16_t *new_reg,
  380. pixman_region16_t *reg1,
  381. pixman_region16_t *reg2);
  382. pixman_bool_t pixman_region_union (pixman_region16_t *new_reg,
  383. pixman_region16_t *reg1,
  384. pixman_region16_t *reg2);
  385. pixman_bool_t pixman_region_union_rect (pixman_region16_t *dest,
  386. pixman_region16_t *source,
  387. int x,
  388. int y,
  389. unsigned int width,
  390. unsigned int height);
  391. pixman_bool_t pixman_region_subtract (pixman_region16_t *reg_d,
  392. pixman_region16_t *reg_m,
  393. pixman_region16_t *reg_s);
  394. pixman_bool_t pixman_region_inverse (pixman_region16_t *new_reg,
  395. pixman_region16_t *reg1,
  396. pixman_box16_t *inv_rect);
  397. pixman_bool_t pixman_region_contains_point (pixman_region16_t *region,
  398. int x,
  399. int y,
  400. pixman_box16_t *box);
  401. pixman_region_overlap_t pixman_region_contains_rectangle (pixman_region16_t *region,
  402. pixman_box16_t *prect);
  403. pixman_bool_t pixman_region_not_empty (pixman_region16_t *region);
  404. pixman_box16_t * pixman_region_extents (pixman_region16_t *region);
  405. int pixman_region_n_rects (pixman_region16_t *region);
  406. pixman_box16_t * pixman_region_rectangles (pixman_region16_t *region,
  407. int *n_rects);
  408. pixman_bool_t pixman_region_equal (pixman_region16_t *region1,
  409. pixman_region16_t *region2);
  410. pixman_bool_t pixman_region_selfcheck (pixman_region16_t *region);
  411. void pixman_region_reset (pixman_region16_t *region,
  412. pixman_box16_t *box);
  413. /*
  414. * 32 bit regions
  415. */
  416. typedef struct pixman_region32_data pixman_region32_data_t;
  417. typedef struct pixman_box32 pixman_box32_t;
  418. typedef struct pixman_rectangle32 pixman_rectangle32_t;
  419. typedef struct pixman_region32 pixman_region32_t;
  420. struct pixman_region32_data {
  421. long size;
  422. long numRects;
  423. /* pixman_box32_t rects[size]; in memory but not explicitly declared */
  424. };
  425. struct pixman_rectangle32
  426. {
  427. int32_t x, y;
  428. uint32_t width, height;
  429. };
  430. struct pixman_box32
  431. {
  432. int32_t x1, y1, x2, y2;
  433. };
  434. struct pixman_region32
  435. {
  436. pixman_box32_t extents;
  437. pixman_region32_data_t *data;
  438. };
  439. /* creation/destruction */
  440. void pixman_region32_init (pixman_region32_t *region);
  441. void pixman_region32_init_rect (pixman_region32_t *region,
  442. int x,
  443. int y,
  444. unsigned int width,
  445. unsigned int height);
  446. pixman_bool_t pixman_region32_init_rects (pixman_region32_t *region,
  447. const pixman_box32_t *boxes,
  448. int count);
  449. void pixman_region32_init_with_extents (pixman_region32_t *region,
  450. pixman_box32_t *extents);
  451. void pixman_region32_init_from_image (pixman_region32_t *region,
  452. pixman_image_t *image);
  453. void pixman_region32_fini (pixman_region32_t *region);
  454. /* manipulation */
  455. void pixman_region32_translate (pixman_region32_t *region,
  456. int x,
  457. int y);
  458. pixman_bool_t pixman_region32_copy (pixman_region32_t *dest,
  459. pixman_region32_t *source);
  460. pixman_bool_t pixman_region32_intersect (pixman_region32_t *new_reg,
  461. pixman_region32_t *reg1,
  462. pixman_region32_t *reg2);
  463. pixman_bool_t pixman_region32_union (pixman_region32_t *new_reg,
  464. pixman_region32_t *reg1,
  465. pixman_region32_t *reg2);
  466. pixman_bool_t pixman_region32_union_rect (pixman_region32_t *dest,
  467. pixman_region32_t *source,
  468. int x,
  469. int y,
  470. unsigned int width,
  471. unsigned int height);
  472. pixman_bool_t pixman_region32_subtract (pixman_region32_t *reg_d,
  473. pixman_region32_t *reg_m,
  474. pixman_region32_t *reg_s);
  475. pixman_bool_t pixman_region32_inverse (pixman_region32_t *new_reg,
  476. pixman_region32_t *reg1,
  477. pixman_box32_t *inv_rect);
  478. pixman_bool_t pixman_region32_contains_point (pixman_region32_t *region,
  479. int x,
  480. int y,
  481. pixman_box32_t *box);
  482. pixman_region_overlap_t pixman_region32_contains_rectangle (pixman_region32_t *region,
  483. pixman_box32_t *prect);
  484. pixman_bool_t pixman_region32_not_empty (pixman_region32_t *region);
  485. pixman_box32_t * pixman_region32_extents (pixman_region32_t *region);
  486. int pixman_region32_n_rects (pixman_region32_t *region);
  487. pixman_box32_t * pixman_region32_rectangles (pixman_region32_t *region,
  488. int *n_rects);
  489. pixman_bool_t pixman_region32_equal (pixman_region32_t *region1,
  490. pixman_region32_t *region2);
  491. pixman_bool_t pixman_region32_selfcheck (pixman_region32_t *region);
  492. void pixman_region32_reset (pixman_region32_t *region,
  493. pixman_box32_t *box);
  494. /* Copy / Fill / Misc */
  495. pixman_bool_t pixman_blt (uint32_t *src_bits,
  496. uint32_t *dst_bits,
  497. int src_stride,
  498. int dst_stride,
  499. int src_bpp,
  500. int dst_bpp,
  501. int src_x,
  502. int src_y,
  503. int dst_x,
  504. int dst_y,
  505. int width,
  506. int height);
  507. pixman_bool_t pixman_fill (uint32_t *bits,
  508. int stride,
  509. int bpp,
  510. int x,
  511. int y,
  512. int width,
  513. int height,
  514. uint32_t _xor);
  515. int pixman_version (void);
  516. const char* pixman_version_string (void);
  517. /*
  518. * Images
  519. */
  520. typedef struct pixman_indexed pixman_indexed_t;
  521. typedef struct pixman_gradient_stop pixman_gradient_stop_t;
  522. typedef uint32_t (* pixman_read_memory_func_t) (const void *src, int size);
  523. typedef void (* pixman_write_memory_func_t) (void *dst, uint32_t value, int size);
  524. typedef void (* pixman_image_destroy_func_t) (pixman_image_t *image, void *data);
  525. struct pixman_gradient_stop {
  526. pixman_fixed_t x;
  527. pixman_color_t color;
  528. };
  529. #define PIXMAN_MAX_INDEXED 256 /* XXX depth must be <= 8 */
  530. #if PIXMAN_MAX_INDEXED <= 256
  531. typedef uint8_t pixman_index_type;
  532. #endif
  533. struct pixman_indexed
  534. {
  535. pixman_bool_t color;
  536. uint32_t rgba[PIXMAN_MAX_INDEXED];
  537. pixman_index_type ent[32768];
  538. };
  539. /*
  540. * While the protocol is generous in format support, the
  541. * sample implementation allows only packed RGB and GBR
  542. * representations for data to simplify software rendering,
  543. */
  544. #define PIXMAN_FORMAT(bpp,type,a,r,g,b) (((bpp) << 24) | \
  545. ((type) << 16) | \
  546. ((a) << 12) | \
  547. ((r) << 8) | \
  548. ((g) << 4) | \
  549. ((b)))
  550. #define PIXMAN_FORMAT_BPP(f) (((f) >> 24) )
  551. #define PIXMAN_FORMAT_TYPE(f) (((f) >> 16) & 0xff)
  552. #define PIXMAN_FORMAT_A(f) (((f) >> 12) & 0x0f)
  553. #define PIXMAN_FORMAT_R(f) (((f) >> 8) & 0x0f)
  554. #define PIXMAN_FORMAT_G(f) (((f) >> 4) & 0x0f)
  555. #define PIXMAN_FORMAT_B(f) (((f) ) & 0x0f)
  556. #define PIXMAN_FORMAT_RGB(f) (((f) ) & 0xfff)
  557. #define PIXMAN_FORMAT_VIS(f) (((f) ) & 0xffff)
  558. #define PIXMAN_FORMAT_DEPTH(f) (PIXMAN_FORMAT_A(f) + \
  559. PIXMAN_FORMAT_R(f) + \
  560. PIXMAN_FORMAT_G(f) + \
  561. PIXMAN_FORMAT_B(f))
  562. #define PIXMAN_TYPE_OTHER 0
  563. #define PIXMAN_TYPE_A 1
  564. #define PIXMAN_TYPE_ARGB 2
  565. #define PIXMAN_TYPE_ABGR 3
  566. #define PIXMAN_TYPE_COLOR 4
  567. #define PIXMAN_TYPE_GRAY 5
  568. #define PIXMAN_TYPE_YUY2 6
  569. #define PIXMAN_TYPE_YV12 7
  570. #define PIXMAN_TYPE_BGRA 8
  571. #define PIXMAN_FORMAT_COLOR(f) \
  572. (PIXMAN_FORMAT_TYPE(f) == PIXMAN_TYPE_ARGB || \
  573. PIXMAN_FORMAT_TYPE(f) == PIXMAN_TYPE_ABGR || \
  574. PIXMAN_FORMAT_TYPE(f) == PIXMAN_TYPE_BGRA)
  575. /* 32bpp formats */
  576. typedef enum {
  577. PIXMAN_a8r8g8b8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,8,8,8,8),
  578. PIXMAN_x8r8g8b8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,0,8,8,8),
  579. PIXMAN_a8b8g8r8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,8,8,8,8),
  580. PIXMAN_x8b8g8r8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,0,8,8,8),
  581. PIXMAN_b8g8r8a8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_BGRA,8,8,8,8),
  582. PIXMAN_b8g8r8x8 = PIXMAN_FORMAT(32,PIXMAN_TYPE_BGRA,0,8,8,8),
  583. PIXMAN_x2r10g10b10 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,0,10,10,10),
  584. PIXMAN_a2r10g10b10 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,2,10,10,10),
  585. PIXMAN_x2b10g10r10 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,0,10,10,10),
  586. PIXMAN_a2b10g10r10 = PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,2,10,10,10),
  587. /* 24bpp formats */
  588. PIXMAN_r8g8b8 = PIXMAN_FORMAT(24,PIXMAN_TYPE_ARGB,0,8,8,8),
  589. PIXMAN_b8g8r8 = PIXMAN_FORMAT(24,PIXMAN_TYPE_ABGR,0,8,8,8),
  590. /* 16bpp formats */
  591. PIXMAN_r5g6b5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,0,5,6,5),
  592. PIXMAN_b5g6r5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ABGR,0,5,6,5),
  593. PIXMAN_a1r5g5b5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,1,5,5,5),
  594. PIXMAN_x1r5g5b5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,0,5,5,5),
  595. PIXMAN_a1b5g5r5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ABGR,1,5,5,5),
  596. PIXMAN_x1b5g5r5 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ABGR,0,5,5,5),
  597. PIXMAN_a4r4g4b4 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,4,4,4,4),
  598. PIXMAN_x4r4g4b4 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,0,4,4,4),
  599. PIXMAN_a4b4g4r4 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ABGR,4,4,4,4),
  600. PIXMAN_x4b4g4r4 = PIXMAN_FORMAT(16,PIXMAN_TYPE_ABGR,0,4,4,4),
  601. /* 8bpp formats */
  602. PIXMAN_a8 = PIXMAN_FORMAT(8,PIXMAN_TYPE_A,8,0,0,0),
  603. PIXMAN_r3g3b2 = PIXMAN_FORMAT(8,PIXMAN_TYPE_ARGB,0,3,3,2),
  604. PIXMAN_b2g3r3 = PIXMAN_FORMAT(8,PIXMAN_TYPE_ABGR,0,3,3,2),
  605. PIXMAN_a2r2g2b2 = PIXMAN_FORMAT(8,PIXMAN_TYPE_ARGB,2,2,2,2),
  606. PIXMAN_a2b2g2r2 = PIXMAN_FORMAT(8,PIXMAN_TYPE_ABGR,2,2,2,2),
  607. PIXMAN_c8 = PIXMAN_FORMAT(8,PIXMAN_TYPE_COLOR,0,0,0,0),
  608. PIXMAN_g8 = PIXMAN_FORMAT(8,PIXMAN_TYPE_GRAY,0,0,0,0),
  609. PIXMAN_x4a4 = PIXMAN_FORMAT(8,PIXMAN_TYPE_A,4,0,0,0),
  610. PIXMAN_x4c4 = PIXMAN_FORMAT(8,PIXMAN_TYPE_COLOR,0,0,0,0),
  611. PIXMAN_x4g4 = PIXMAN_FORMAT(8,PIXMAN_TYPE_GRAY,0,0,0,0),
  612. /* 4bpp formats */
  613. PIXMAN_a4 = PIXMAN_FORMAT(4,PIXMAN_TYPE_A,4,0,0,0),
  614. PIXMAN_r1g2b1 = PIXMAN_FORMAT(4,PIXMAN_TYPE_ARGB,0,1,2,1),
  615. PIXMAN_b1g2r1 = PIXMAN_FORMAT(4,PIXMAN_TYPE_ABGR,0,1,2,1),
  616. PIXMAN_a1r1g1b1 = PIXMAN_FORMAT(4,PIXMAN_TYPE_ARGB,1,1,1,1),
  617. PIXMAN_a1b1g1r1 = PIXMAN_FORMAT(4,PIXMAN_TYPE_ABGR,1,1,1,1),
  618. PIXMAN_c4 = PIXMAN_FORMAT(4,PIXMAN_TYPE_COLOR,0,0,0,0),
  619. PIXMAN_g4 = PIXMAN_FORMAT(4,PIXMAN_TYPE_GRAY,0,0,0,0),
  620. /* 1bpp formats */
  621. PIXMAN_a1 = PIXMAN_FORMAT(1,PIXMAN_TYPE_A,1,0,0,0),
  622. PIXMAN_g1 = PIXMAN_FORMAT(1,PIXMAN_TYPE_GRAY,0,0,0,0),
  623. /* YUV formats */
  624. PIXMAN_yuy2 = PIXMAN_FORMAT(16,PIXMAN_TYPE_YUY2,0,0,0,0),
  625. PIXMAN_yv12 = PIXMAN_FORMAT(12,PIXMAN_TYPE_YV12,0,0,0,0)
  626. } pixman_format_code_t;
  627. /* Querying supported format values. */
  628. pixman_bool_t pixman_format_supported_destination (pixman_format_code_t format);
  629. pixman_bool_t pixman_format_supported_source (pixman_format_code_t format);
  630. /* Constructors */
  631. pixman_image_t *pixman_image_create_solid_fill (pixman_color_t *color);
  632. pixman_image_t *pixman_image_create_linear_gradient (pixman_point_fixed_t *p1,
  633. pixman_point_fixed_t *p2,
  634. const pixman_gradient_stop_t *stops,
  635. int n_stops);
  636. pixman_image_t *pixman_image_create_radial_gradient (pixman_point_fixed_t *inner,
  637. pixman_point_fixed_t *outer,
  638. pixman_fixed_t inner_radius,
  639. pixman_fixed_t outer_radius,
  640. const pixman_gradient_stop_t *stops,
  641. int n_stops);
  642. pixman_image_t *pixman_image_create_conical_gradient (pixman_point_fixed_t *center,
  643. pixman_fixed_t angle,
  644. const pixman_gradient_stop_t *stops,
  645. int n_stops);
  646. pixman_image_t *pixman_image_create_bits (pixman_format_code_t format,
  647. int width,
  648. int height,
  649. uint32_t *bits,
  650. int rowstride_bytes);
  651. /* Destructor */
  652. pixman_image_t *pixman_image_ref (pixman_image_t *image);
  653. pixman_bool_t pixman_image_unref (pixman_image_t *image);
  654. void pixman_image_set_destroy_function (pixman_image_t *image,
  655. pixman_image_destroy_func_t function,
  656. void *data);
  657. void * pixman_image_get_destroy_data (pixman_image_t *image);
  658. /* Set properties */
  659. pixman_bool_t pixman_image_set_clip_region (pixman_image_t *image,
  660. pixman_region16_t *region);
  661. pixman_bool_t pixman_image_set_clip_region32 (pixman_image_t *image,
  662. pixman_region32_t *region);
  663. void pixman_image_set_has_client_clip (pixman_image_t *image,
  664. pixman_bool_t clien_clip);
  665. pixman_bool_t pixman_image_set_transform (pixman_image_t *image,
  666. const pixman_transform_t *transform);
  667. void pixman_image_set_repeat (pixman_image_t *image,
  668. pixman_repeat_t repeat);
  669. pixman_bool_t pixman_image_set_filter (pixman_image_t *image,
  670. pixman_filter_t filter,
  671. const pixman_fixed_t *filter_params,
  672. int n_filter_params);
  673. void pixman_image_set_source_clipping (pixman_image_t *image,
  674. pixman_bool_t source_clipping);
  675. void pixman_image_set_alpha_map (pixman_image_t *image,
  676. pixman_image_t *alpha_map,
  677. int16_t x,
  678. int16_t y);
  679. void pixman_image_set_component_alpha (pixman_image_t *image,
  680. pixman_bool_t component_alpha);
  681. void pixman_image_set_accessors (pixman_image_t *image,
  682. pixman_read_memory_func_t read_func,
  683. pixman_write_memory_func_t write_func);
  684. void pixman_image_set_indexed (pixman_image_t *image,
  685. const pixman_indexed_t *indexed);
  686. uint32_t *pixman_image_get_data (pixman_image_t *image);
  687. int pixman_image_get_width (pixman_image_t *image);
  688. int pixman_image_get_height (pixman_image_t *image);
  689. int pixman_image_get_stride (pixman_image_t *image); /* in bytes */
  690. int pixman_image_get_depth (pixman_image_t *image);
  691. pixman_bool_t pixman_image_fill_rectangles (pixman_op_t op,
  692. pixman_image_t *image,
  693. pixman_color_t *color,
  694. int n_rects,
  695. const pixman_rectangle16_t *rects);
  696. pixman_bool_t pixman_image_fill_boxes (pixman_op_t op,
  697. pixman_image_t *dest,
  698. pixman_color_t *color,
  699. int n_boxes,
  700. const pixman_box32_t *boxes);
  701. /* Composite */
  702. pixman_bool_t pixman_compute_composite_region (pixman_region16_t *region,
  703. pixman_image_t *src_image,
  704. pixman_image_t *mask_image,
  705. pixman_image_t *dst_image,
  706. int16_t src_x,
  707. int16_t src_y,
  708. int16_t mask_x,
  709. int16_t mask_y,
  710. int16_t dest_x,
  711. int16_t dest_y,
  712. uint16_t width,
  713. uint16_t height);
  714. void pixman_image_composite (pixman_op_t op,
  715. pixman_image_t *src,
  716. pixman_image_t *mask,
  717. pixman_image_t *dest,
  718. int16_t src_x,
  719. int16_t src_y,
  720. int16_t mask_x,
  721. int16_t mask_y,
  722. int16_t dest_x,
  723. int16_t dest_y,
  724. uint16_t width,
  725. uint16_t height);
  726. void pixman_image_composite32 (pixman_op_t op,
  727. pixman_image_t *src,
  728. pixman_image_t *mask,
  729. pixman_image_t *dest,
  730. int32_t src_x,
  731. int32_t src_y,
  732. int32_t mask_x,
  733. int32_t mask_y,
  734. int32_t dest_x,
  735. int32_t dest_y,
  736. int32_t width,
  737. int32_t height);
  738. /* Old X servers rely on out-of-bounds accesses when they are asked
  739. * to composite with a window as the source. They create a pixman image
  740. * pointing to some bogus position in memory, but then they set a clip
  741. * region to the position where the actual bits are.
  742. *
  743. * Due to a bug in old versions of pixman, where it would not clip
  744. * against the image bounds when a clip region was set, this would
  745. * actually work. So by default we allow certain out-of-bound access
  746. * to happen unless explicitly disabled.
  747. *
  748. * Fixed X servers should call this function to disable the workaround.
  749. */
  750. void pixman_disable_out_of_bounds_workaround (void);
  751. /*
  752. * Trapezoids
  753. */
  754. typedef struct pixman_edge pixman_edge_t;
  755. typedef struct pixman_trapezoid pixman_trapezoid_t;
  756. typedef struct pixman_trap pixman_trap_t;
  757. typedef struct pixman_span_fix pixman_span_fix_t;
  758. /*
  759. * An edge structure. This represents a single polygon edge
  760. * and can be quickly stepped across small or large gaps in the
  761. * sample grid
  762. */
  763. struct pixman_edge
  764. {
  765. pixman_fixed_t x;
  766. pixman_fixed_t e;
  767. pixman_fixed_t stepx;
  768. pixman_fixed_t signdx;
  769. pixman_fixed_t dy;
  770. pixman_fixed_t dx;
  771. pixman_fixed_t stepx_small;
  772. pixman_fixed_t stepx_big;
  773. pixman_fixed_t dx_small;
  774. pixman_fixed_t dx_big;
  775. };
  776. struct pixman_trapezoid
  777. {
  778. pixman_fixed_t top, bottom;
  779. pixman_line_fixed_t left, right;
  780. };
  781. /* whether 't' is a well defined not obviously empty trapezoid */
  782. #define pixman_trapezoid_valid(t) \
  783. ((t)->left.p1.y != (t)->left.p2.y && \
  784. (t)->right.p1.y != (t)->right.p2.y && \
  785. (int) ((t)->bottom - (t)->top) > 0)
  786. struct pixman_span_fix
  787. {
  788. pixman_fixed_t l, r, y;
  789. };
  790. struct pixman_trap
  791. {
  792. pixman_span_fix_t top, bot;
  793. };
  794. pixman_fixed_t pixman_sample_ceil_y (pixman_fixed_t y,
  795. int bpp);
  796. pixman_fixed_t pixman_sample_floor_y (pixman_fixed_t y,
  797. int bpp);
  798. void pixman_edge_step (pixman_edge_t *e,
  799. int n);
  800. void pixman_edge_init (pixman_edge_t *e,
  801. int bpp,
  802. pixman_fixed_t y_start,
  803. pixman_fixed_t x_top,
  804. pixman_fixed_t y_top,
  805. pixman_fixed_t x_bot,
  806. pixman_fixed_t y_bot);
  807. void pixman_line_fixed_edge_init (pixman_edge_t *e,
  808. int bpp,
  809. pixman_fixed_t y,
  810. const pixman_line_fixed_t *line,
  811. int x_off,
  812. int y_off);
  813. void pixman_rasterize_edges (pixman_image_t *image,
  814. pixman_edge_t *l,
  815. pixman_edge_t *r,
  816. pixman_fixed_t t,
  817. pixman_fixed_t b);
  818. void pixman_add_traps (pixman_image_t *image,
  819. int16_t x_off,
  820. int16_t y_off,
  821. int ntrap,
  822. pixman_trap_t *traps);
  823. void pixman_add_trapezoids (pixman_image_t *image,
  824. int16_t x_off,
  825. int y_off,
  826. int ntraps,
  827. const pixman_trapezoid_t *traps);
  828. void pixman_rasterize_trapezoid (pixman_image_t *image,
  829. const pixman_trapezoid_t *trap,
  830. int x_off,
  831. int y_off);
  832. PIXMAN_END_DECLS
  833. #endif /* PIXMAN_H__ */