summaryrefslogtreecommitdiff
path: root/pixman/pixman-orc.c
blob: c9ccb087d08ac0b50dee59d5f85f123ed32fb5ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
/*
 * Copyright 2009 David Schleef <ds@schleef.org>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Entropy Wave not be used in advertising or
 * publicity pertaining to distribution of the software without specific,
 * written prior permission.  Entropy Wave makes no representations about the
 * suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 * SOFTWARE.
 *
 * Author:  David Schleef <ds@schleef.org>
 */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <orc/orc.h>

#include "pixman-orccode.h"
#include "pixman-private.h"
#include "pixman-combine32.h"

#include <stdio.h>

#define static


static void
orc_combine_over_u (pixman_implementation_t *imp,
                    pixman_op_t              op,
                    uint32_t *               dst,
                    const uint32_t *         src,
                    const uint32_t *         mask,
                    int                      width)
{
  if (mask) {
    orc_code_combine_over_u (dst, src, mask, width);
  } else {
    orc_code_combine_over_u_n (dst, src, width);
  }
}

static void
orc_combine_in_u (pixman_implementation_t *imp,
                    pixman_op_t              op,
                    uint32_t *               dst,
                    const uint32_t *         src,
                    const uint32_t *         mask,
                    int                      width)
{
  if (mask) {
    orc_code_combine_in_u (dst, src, mask, width);
  } else {
    orc_code_combine_in_u_n (dst, src, width);
  }
}

static void
orc_combine_add_u (pixman_implementation_t *imp,
                    pixman_op_t              op,
                    uint32_t *               dst,
                    const uint32_t *         src,
                    const uint32_t *         mask,
                    int                      width)
{
  if (mask) {
    orc_code_combine_add_u (dst, src, mask, width);
  } else {
    orc_code_combine_add_u_n (dst, src, width);
  }
}

static void
orc_combine_out_u (pixman_implementation_t *imp,
                    pixman_op_t              op,
                    uint32_t *               dst,
                    const uint32_t *         src,
                    const uint32_t *         mask,
                    int                      width)
{
  if (mask) {
    orc_code_combine_out_u (dst, src, mask, width);
  } else {
    orc_code_combine_out_u_n (dst, src, width);
  }
}

static void
orc_combine_atop_u (pixman_implementation_t *imp,
                    pixman_op_t              op,
                    uint32_t *               dst,
                    const uint32_t *         src,
                    const uint32_t *         mask,
                    int                      width)
{
  if (mask) {
    orc_code_combine_atop_u (dst, src, mask, width);
  } else {
    orc_code_combine_atop_u_n (dst, src, width);
  }
}


pixman_bool_t
pixman_fill_orc (uint32_t *bits,
                  int       stride,
                  int       bpp,
                  int       x,
                  int       y,
                  int       width,
                  int       height,
                  uint32_t  data)
{
  uint8_t *line;

  if (bpp == 16 && (data >> 16 != (data & 0xffff)))
    return FALSE;

  if (bpp == 16) {
    stride *= 4;
    line = (uint8_t *)bits + stride * y + 2 * x;
    orc_splat_u16_2d ((uint16_t *)line, stride, data, width, height);
  } else if (bpp == 32) {
    stride *= 4;
    line = (uint8_t *)bits + stride * y + 4 * x;
    orc_splat_u32_2d ((uint32_t *)line, stride, data, width, height);
  } else {
    return FALSE;
  }

  return TRUE;
}

static pixman_bool_t
pixman_blt_orc (uint32_t *src_bits,
                 uint32_t *dst_bits,
                 int       src_stride,
                 int       dst_stride,
                 int       src_bpp,
                 int       dst_bpp,
                 int       src_x,
                 int       src_y,
                 int       dst_x,
                 int       dst_y,
                 int       width,
                 int       height)
{
  uint8_t *src_line;
  uint8_t *dst_line;

  if (src_bpp != dst_bpp) return FALSE;

  if (src_bpp == 16) {
    src_stride *= 4;
    dst_stride *= 4;
    src_line = (uint8_t *)src_bits + src_stride * src_y + 2 * src_x;
    dst_line = (uint8_t *)dst_bits + dst_stride * dst_y + 2 * dst_x;
    orc_copy_u16_2d ((uint16_t *)dst_line, dst_stride,
        (uint16_t *)src_line, src_stride, width, height);
  } else if (src_bpp == 32) {
    src_stride *= 4;
    dst_stride *= 4;
    src_line = (uint8_t *)src_bits + src_stride * src_y + 4 * src_x;
    dst_line = (uint8_t *)dst_bits + dst_stride * dst_y + 4 * dst_x;
    orc_copy_u32_2d ((uint32_t *)dst_line, dst_stride,
        (uint32_t *)src_line, src_stride, width, height);
  } else {
    return FALSE;
  }

  return TRUE;
}

static void
orc_composite_copy_area (pixman_implementation_t *imp,
                          pixman_op_t              op,
                          pixman_image_t *         src_image,
                          pixman_image_t *         mask_image,
                          pixman_image_t *         dst_image,
                          int32_t                  src_x,
                          int32_t                  src_y,
                          int32_t                  mask_x,
                          int32_t                  mask_y,
                          int32_t                  dest_x,
                          int32_t                  dest_y,
                          int32_t                  width,
                          int32_t                  height)
{
    pixman_blt_orc (src_image->bits.bits,
                     dst_image->bits.bits,
                     src_image->bits.rowstride,
                     dst_image->bits.rowstride,
                     PIXMAN_FORMAT_BPP (src_image->bits.format),
                     PIXMAN_FORMAT_BPP (dst_image->bits.format),
                     src_x, src_y, dest_x, dest_y, width, height);
}


static void
orc_composite_add_8888_8888 (pixman_implementation_t *imp,
                                 pixman_op_t              op,
                                 pixman_image_t *         src_image,
                                 pixman_image_t *         mask_image,
                                 pixman_image_t *         dst_image,
                                 int32_t                  src_x,
                                 int32_t                  src_y,
                                 int32_t                  mask_x,
                                 int32_t                  mask_y,
                                 int32_t                  dest_x,
                                 int32_t                  dest_y,
                                 int32_t                  width,
                                 int32_t                  height)
{
    uint32_t    *src, *src_line;
    uint32_t    *dst, *dst_line;
    int src_stride, dst_stride;

    PIXMAN_IMAGE_GET_LINE (
	dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1);
    PIXMAN_IMAGE_GET_LINE (
	src_image, src_x, src_y, uint32_t, src_stride, src_line, 1);

    while (height--) {
        src = src_line;
        src_line += src_stride;
        dst = dst_line;
        dst_line += dst_stride;

        orc_composite_add_8888_8888_line (dst, src, width);
    }
}


static void
orc_composite_add_8000_8000 (pixman_implementation_t *imp,
                                 pixman_op_t              op,
                                 pixman_image_t *         src_image,
                                 pixman_image_t *         mask_image,
                                 pixman_image_t *         dst_image,
                                 int32_t                  src_x,
                                 int32_t                  src_y,
                                 int32_t                  mask_x,
                                 int32_t                  mask_y,
                                 int32_t                  dest_x,
                                 int32_t                  dest_y,
                                 int32_t                  width,
                                 int32_t                  height)
{
    uint8_t    *src, *src_line;
    uint8_t    *dst, *dst_line;
    int src_stride, dst_stride;

    PIXMAN_IMAGE_GET_LINE (
	dst_image, dest_x, dest_y, uint8_t, dst_stride, dst_line, 1);
    PIXMAN_IMAGE_GET_LINE (
	src_image, src_x, src_y, uint8_t, src_stride, src_line, 1);

    while (height--) {
        src = src_line;
        src_line += src_stride;
        dst = dst_line;
        dst_line += dst_stride;

        orc_composite_add_8_8_line (dst, src, width);
    }
}

static void
orc_composite_add_n_8_8 (pixman_implementation_t *imp,
                                 pixman_op_t              op,
                                 pixman_image_t *         src_image,
                                 pixman_image_t *         mask_image,
                                 pixman_image_t *         dst_image,
                                 int32_t                  src_x,
                                 int32_t                  src_y,
                                 int32_t                  mask_x,
                                 int32_t                  mask_y,
                                 int32_t                  dest_x,
                                 int32_t                  dest_y,
                                 int32_t                  width,
                                 int32_t                  height)
{
    uint8_t    *dst, *dst_line;
    uint8_t         *mask, *mask_line;
    int mask_stride, dst_stride;
    int src;

    PIXMAN_IMAGE_GET_LINE (
	dst_image, dest_x, dest_y, uint8_t, dst_stride, dst_line, 1);
    PIXMAN_IMAGE_GET_LINE (
	mask_image, mask_x, mask_y, uint8_t, mask_stride, mask_line, 1);

    src = _pixman_image_get_solid (src_image, dst_image->bits.format);

    while (height--) {
        dst = dst_line;
        dst_line += dst_stride;
        mask = mask_line;
        mask_line += mask_stride;

        orc_composite_add_n_8_8_line (dst, mask, src, width);
    }
}


static const pixman_fast_path_t orc_fast_paths[] =
{
#if 0
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_r5g6b5,   orc_composite_over_n_8_0565       },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_b5g6r5,   orc_composite_over_n_8_0565       },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_null,     PIXMAN_a8r8g8b8, orc_composite_over_n_8888         },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_null,     PIXMAN_x8r8g8b8, orc_composite_over_n_8888         },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_null,     PIXMAN_r5g6b5,   orc_composite_over_n_0565         },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_a8r8g8b8, orc_composite_over_8888_8888      },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_x8r8g8b8, orc_composite_over_8888_8888      },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_a8b8g8r8, orc_composite_over_8888_8888      },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_x8b8g8r8, orc_composite_over_8888_8888      },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_r5g6b5,   orc_composite_over_8888_0565      },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_b5g6r5,   orc_composite_over_8888_0565      },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8r8g8b8, orc_composite_over_n_8_8888       },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_x8r8g8b8, orc_composite_over_n_8_8888       },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8b8g8r8, orc_composite_over_n_8_8888       },
    { PIXMAN_OP_OVER, PIXMAN_solid,    PIXMAN_a8,       PIXMAN_x8b8g8r8, orc_composite_over_n_8_8888       },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_a8,       PIXMAN_x8r8g8b8, orc_composite_over_8888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_a8,       PIXMAN_a8r8g8b8, orc_composite_over_8888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_a8,       PIXMAN_x8b8g8r8, orc_composite_over_8888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_a8,       PIXMAN_a8b8g8r8, orc_composite_over_8888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8r8g8b8, PIXMAN_a8,       PIXMAN_x8r8g8b8, orc_composite_over_x888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8r8g8b8, PIXMAN_a8,       PIXMAN_a8r8g8b8, orc_composite_over_x888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8b8g8r8, PIXMAN_a8,       PIXMAN_x8b8g8r8, orc_composite_over_x888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8b8g8r8, PIXMAN_a8,       PIXMAN_a8b8g8r8, orc_composite_over_x888_8_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8r8g8b8, PIXMAN_solid,    PIXMAN_a8r8g8b8, orc_composite_over_x888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8r8g8b8, PIXMAN_solid,    PIXMAN_x8r8g8b8, orc_composite_over_x888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8b8g8r8, PIXMAN_solid,    PIXMAN_a8b8g8r8, orc_composite_over_x888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_x8b8g8r8, PIXMAN_solid,    PIXMAN_x8b8g8r8, orc_composite_over_x888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_solid,    PIXMAN_a8r8g8b8, orc_composite_over_8888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_solid,    PIXMAN_x8r8g8b8, orc_composite_over_8888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_solid,    PIXMAN_a8b8g8r8, orc_composite_over_8888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_solid,    PIXMAN_x8b8g8r8, orc_composite_over_8888_n_8888    },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8r8g8b8_ca, PIXMAN_a8r8g8b8, orc_composite_over_n_8888_8888_ca },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8r8g8b8_ca, PIXMAN_x8r8g8b8, orc_composite_over_n_8888_8888_ca },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8b8g8r8_ca, PIXMAN_a8b8g8r8, orc_composite_over_n_8888_8888_ca },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8b8g8r8_ca, PIXMAN_x8b8g8r8, orc_composite_over_n_8888_8888_ca },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8r8g8b8_ca, PIXMAN_r5g6b5,   orc_composite_over_n_8888_0565_ca },
    { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8b8g8r8_ca, PIXMAN_b5g6r5,   orc_composite_over_n_8888_0565_ca },
    { PIXMAN_OP_OVER, PIXMAN_pixbuf,   PIXMAN_pixbuf,   PIXMAN_a8r8g8b8, orc_composite_over_pixbuf_8888    },
    { PIXMAN_OP_OVER, PIXMAN_pixbuf,   PIXMAN_pixbuf,   PIXMAN_x8r8g8b8, orc_composite_over_pixbuf_8888    },
    { PIXMAN_OP_OVER, PIXMAN_rpixbuf,  PIXMAN_rpixbuf,  PIXMAN_a8b8g8r8, orc_composite_over_pixbuf_8888    },
    { PIXMAN_OP_OVER, PIXMAN_rpixbuf,  PIXMAN_rpixbuf,  PIXMAN_x8b8g8r8, orc_composite_over_pixbuf_8888    },
    { PIXMAN_OP_OVER, PIXMAN_pixbuf,   PIXMAN_pixbuf,   PIXMAN_r5g6b5,   orc_composite_over_pixbuf_0565    },
    { PIXMAN_OP_OVER, PIXMAN_rpixbuf,  PIXMAN_rpixbuf,  PIXMAN_b5g6r5,   orc_composite_over_pixbuf_0565    },
#endif
    { PIXMAN_OP_OVER, PIXMAN_x8r8g8b8, PIXMAN_null,     PIXMAN_x8r8g8b8, orc_composite_copy_area           },
    { PIXMAN_OP_OVER, PIXMAN_x8b8g8r8, PIXMAN_null,     PIXMAN_x8b8g8r8, orc_composite_copy_area           },
#if 0

    { PIXMAN_OP_ADD,  PIXMAN_solid, PIXMAN_a8r8g8b8_ca, PIXMAN_a8r8g8b8, orc_composite_add_n_8888_8888_ca  },
#endif
    { PIXMAN_OP_ADD,  PIXMAN_a8,       PIXMAN_null,     PIXMAN_a8,       orc_composite_add_8000_8000       },
    { PIXMAN_OP_ADD,  PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_a8r8g8b8, orc_composite_add_8888_8888       },
    { PIXMAN_OP_ADD,  PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_a8b8g8r8, orc_composite_add_8888_8888       },
//    { PIXMAN_OP_ADD,  PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8,       orc_composite_add_n_8_8           },

#if 0
    { PIXMAN_OP_SRC,  PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8r8g8b8, orc_composite_src_n_8_8888        },
    { PIXMAN_OP_SRC,  PIXMAN_solid,    PIXMAN_a8,       PIXMAN_x8r8g8b8, orc_composite_src_n_8_8888        },
    { PIXMAN_OP_SRC,  PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8b8g8r8, orc_composite_src_n_8_8888        },
    { PIXMAN_OP_SRC,  PIXMAN_solid,    PIXMAN_a8,       PIXMAN_x8b8g8r8, orc_composite_src_n_8_8888        },
#endif
    { PIXMAN_OP_SRC,  PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_a8r8g8b8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_a8b8g8r8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_a8r8g8b8, PIXMAN_null,     PIXMAN_x8r8g8b8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_a8b8g8r8, PIXMAN_null,     PIXMAN_x8b8g8r8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_x8r8g8b8, PIXMAN_null,     PIXMAN_x8r8g8b8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_x8b8g8r8, PIXMAN_null,     PIXMAN_x8b8g8r8, orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_r5g6b5,   PIXMAN_null,     PIXMAN_r5g6b5,   orc_composite_copy_area           },
    { PIXMAN_OP_SRC,  PIXMAN_b5g6r5,   PIXMAN_null,     PIXMAN_b5g6r5,   orc_composite_copy_area           },

#if 0
    { PIXMAN_OP_IN,   PIXMAN_a8,       PIXMAN_null,     PIXMAN_a8,       orc_composite_in_8_8              },
    { PIXMAN_OP_IN,   PIXMAN_solid,    PIXMAN_a8,       PIXMAN_a8,       orc_composite_in_n_8_8            },
#endif

    { PIXMAN_OP_NONE },
};

static void
orc_composite (pixman_implementation_t *imp,
                pixman_op_t              op,
                pixman_image_t *         src,
                pixman_image_t *         mask,
                pixman_image_t *         dest,
                int32_t                  src_x,
                int32_t                  src_y,
                int32_t                  mask_x,
                int32_t                  mask_y,
                int32_t                  dest_x,
                int32_t                  dest_y,
                int32_t                  width,
                int32_t                  height)
{
    if (_pixman_run_fast_path (orc_fast_paths, imp,
                               op, src, mask, dest,
                               src_x, src_y,
                               mask_x, mask_y,
                               dest_x, dest_y,
                               width, height))
    {
	return;
    }

    _pixman_implementation_composite (imp->delegate, op,
                                      src, mask, dest,
                                      src_x, src_y,
                                      mask_x, mask_y,
                                      dest_x, dest_y,
                                      width, height);
}

static pixman_bool_t
orc_blt (pixman_implementation_t *imp,
          uint32_t *               src_bits,
          uint32_t *               dst_bits,
          int                      src_stride,
          int                      dst_stride,
          int                      src_bpp,
          int                      dst_bpp,
          int                      src_x,
          int                      src_y,
          int                      dst_x,
          int                      dst_y,
          int                      width,
          int                      height)
{
    if (!pixman_blt_orc (
            src_bits, dst_bits, src_stride, dst_stride, src_bpp, dst_bpp,
            src_x, src_y, dst_x, dst_y, width, height))

    {
	return _pixman_implementation_blt (
	    imp->delegate,
	    src_bits, dst_bits, src_stride, dst_stride, src_bpp, dst_bpp,
	    src_x, src_y, dst_x, dst_y, width, height);
    }

    return TRUE;
}

static pixman_bool_t
orc_fill (pixman_implementation_t *imp,
           uint32_t *               bits,
           int                      stride,
           int                      bpp,
           int                      x,
           int                      y,
           int                      width,
           int                      height,
           uint32_t xor)
{
    if (!pixman_fill_orc (bits, stride, bpp, x, y, width, height, xor))
    {
	return _pixman_implementation_fill (
	    imp->delegate, bits, stride, bpp, x, y, width, height, xor);
    }

    return TRUE;
}


pixman_implementation_t *
_pixman_implementation_create_orc (void)
{
#ifdef USE_SSE2x
    pixman_implementation_t *general = _pixman_implementation_create_sse2 ();  
#else
    pixman_implementation_t *general = _pixman_implementation_create_fast_path ();  
#endif
    pixman_implementation_t *imp = _pixman_implementation_create (general);

    orc_init ();

    imp->combine_32[PIXMAN_OP_OVER] = orc_combine_over_u;
    //imp->combine_32[PIXMAN_OP_OVER_REVERSE] = orc_combine_over_reverse_u;
    imp->combine_32[PIXMAN_OP_IN] = orc_combine_in_u;
    //imp->combine_32[PIXMAN_OP_IN_REVERSE] = orc_combine_in_reverse_u;
    imp->combine_32[PIXMAN_OP_OUT] = orc_combine_out_u;
    //imp->combine_32[PIXMAN_OP_OUT_REVERSE] = orc_combine_out_reverse_u;
    imp->combine_32[PIXMAN_OP_ATOP] = orc_combine_atop_u;
    //imp->combine_32[PIXMAN_OP_ATOP_REVERSE] = orc_combine_atop_reverse_u;
    //imp->combine_32[PIXMAN_OP_XOR] = orc_combine_xor_u;
    imp->combine_32[PIXMAN_OP_ADD] = orc_combine_add_u;

    //imp->combine_32[PIXMAN_OP_SATURATE] = orc_combine_saturate_u;

    //imp->combine_32_ca[PIXMAN_OP_SRC] = orc_combine_src_ca;
    //imp->combine_32_ca[PIXMAN_OP_OVER] = orc_combine_over_ca;
    //imp->combine_32_ca[PIXMAN_OP_OVER_REVERSE] = orc_combine_over_reverse_ca;
    //imp->combine_32_ca[PIXMAN_OP_IN] = orc_combine_in_ca;
    //imp->combine_32_ca[PIXMAN_OP_IN_REVERSE] = orc_combine_in_reverse_ca;
    //imp->combine_32_ca[PIXMAN_OP_OUT] = orc_combine_out_ca;
    //imp->combine_32_ca[PIXMAN_OP_OUT_REVERSE] = orc_combine_out_reverse_ca;
    //imp->combine_32_ca[PIXMAN_OP_ATOP] = orc_combine_atop_ca;
    //imp->combine_32_ca[PIXMAN_OP_ATOP_REVERSE] = orc_combine_atop_reverse_ca;
    //imp->combine_32_ca[PIXMAN_OP_XOR] = orc_combine_xor_ca;
    //imp->combine_32_ca[PIXMAN_OP_ADD] = orc_combine_add_ca;

    imp->composite = orc_composite;
    imp->blt = orc_blt;
    imp->fill = orc_fill;

    return imp;
}