Merge ../mesa into vulkan
[mesa.git] / src / gallium / auxiliary / util / u_format.c
1 /**************************************************************************
2 *
3 * Copyright 2010 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /**
29 * @file
30 * Pixel format accessor functions.
31 *
32 * @author Jose Fonseca <jfonseca@vmware.com>
33 */
34
35 #include "u_math.h"
36 #include "u_memory.h"
37 #include "u_format.h"
38 #include "u_format_s3tc.h"
39 #include "u_surface.h"
40
41 #include "pipe/p_defines.h"
42
43
44 boolean
45 util_format_is_float(enum pipe_format format)
46 {
47 const struct util_format_description *desc = util_format_description(format);
48 unsigned i;
49
50 assert(desc);
51 if (!desc) {
52 return FALSE;
53 }
54
55 i = util_format_get_first_non_void_channel(format);
56 if (i == -1) {
57 return FALSE;
58 }
59
60 return desc->channel[i].type == UTIL_FORMAT_TYPE_FLOAT ? TRUE : FALSE;
61 }
62
63
64 /** Test if the format contains RGB, but not alpha */
65 boolean
66 util_format_has_alpha(enum pipe_format format)
67 {
68 const struct util_format_description *desc =
69 util_format_description(format);
70
71 return (desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
72 desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
73 desc->swizzle[3] != UTIL_FORMAT_SWIZZLE_1;
74 }
75
76
77 boolean
78 util_format_is_luminance(enum pipe_format format)
79 {
80 const struct util_format_description *desc =
81 util_format_description(format);
82
83 if ((desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
84 desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
85 desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_X &&
86 desc->swizzle[1] == UTIL_FORMAT_SWIZZLE_X &&
87 desc->swizzle[2] == UTIL_FORMAT_SWIZZLE_X &&
88 desc->swizzle[3] == UTIL_FORMAT_SWIZZLE_1) {
89 return TRUE;
90 }
91 return FALSE;
92 }
93
94 boolean
95 util_format_is_alpha(enum pipe_format format)
96 {
97 const struct util_format_description *desc =
98 util_format_description(format);
99
100 if ((desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
101 desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
102 desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_0 &&
103 desc->swizzle[1] == UTIL_FORMAT_SWIZZLE_0 &&
104 desc->swizzle[2] == UTIL_FORMAT_SWIZZLE_0 &&
105 desc->swizzle[3] == UTIL_FORMAT_SWIZZLE_X) {
106 return TRUE;
107 }
108 return FALSE;
109 }
110
111 boolean
112 util_format_is_pure_integer(enum pipe_format format)
113 {
114 const struct util_format_description *desc = util_format_description(format);
115 int i;
116
117 /* Find the first non-void channel. */
118 i = util_format_get_first_non_void_channel(format);
119 if (i == -1)
120 return FALSE;
121
122 return desc->channel[i].pure_integer ? TRUE : FALSE;
123 }
124
125 boolean
126 util_format_is_pure_sint(enum pipe_format format)
127 {
128 const struct util_format_description *desc = util_format_description(format);
129 int i;
130
131 i = util_format_get_first_non_void_channel(format);
132 if (i == -1)
133 return FALSE;
134
135 return (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED && desc->channel[i].pure_integer) ? TRUE : FALSE;
136 }
137
138 boolean
139 util_format_is_pure_uint(enum pipe_format format)
140 {
141 const struct util_format_description *desc = util_format_description(format);
142 int i;
143
144 i = util_format_get_first_non_void_channel(format);
145 if (i == -1)
146 return FALSE;
147
148 return (desc->channel[i].type == UTIL_FORMAT_TYPE_UNSIGNED && desc->channel[i].pure_integer) ? TRUE : FALSE;
149 }
150
151 /**
152 * Returns true if all non-void channels are normalized signed.
153 */
154 boolean
155 util_format_is_snorm(enum pipe_format format)
156 {
157 const struct util_format_description *desc = util_format_description(format);
158 int i;
159
160 if (desc->is_mixed)
161 return FALSE;
162
163 i = util_format_get_first_non_void_channel(format);
164 if (i == -1)
165 return FALSE;
166
167 return desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED &&
168 !desc->channel[i].pure_integer &&
169 desc->channel[i].normalized;
170 }
171
172 boolean
173 util_format_is_snorm8(enum pipe_format format)
174 {
175 const struct util_format_description *desc = util_format_description(format);
176 int i;
177
178 if (desc->is_mixed)
179 return FALSE;
180
181 i = util_format_get_first_non_void_channel(format);
182 if (i == -1)
183 return FALSE;
184
185 return desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED &&
186 !desc->channel[i].pure_integer &&
187 desc->channel[i].normalized &&
188 desc->channel[i].size == 8;
189 }
190
191 boolean
192 util_format_is_luminance_alpha(enum pipe_format format)
193 {
194 const struct util_format_description *desc =
195 util_format_description(format);
196
197 if ((desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
198 desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
199 desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_X &&
200 desc->swizzle[1] == UTIL_FORMAT_SWIZZLE_X &&
201 desc->swizzle[2] == UTIL_FORMAT_SWIZZLE_X &&
202 desc->swizzle[3] == UTIL_FORMAT_SWIZZLE_Y) {
203 return TRUE;
204 }
205 return FALSE;
206 }
207
208
209 boolean
210 util_format_is_intensity(enum pipe_format format)
211 {
212 const struct util_format_description *desc =
213 util_format_description(format);
214
215 if ((desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
216 desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
217 desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_X &&
218 desc->swizzle[1] == UTIL_FORMAT_SWIZZLE_X &&
219 desc->swizzle[2] == UTIL_FORMAT_SWIZZLE_X &&
220 desc->swizzle[3] == UTIL_FORMAT_SWIZZLE_X) {
221 return TRUE;
222 }
223 return FALSE;
224 }
225
226 boolean
227 util_format_is_subsampled_422(enum pipe_format format)
228 {
229 const struct util_format_description *desc =
230 util_format_description(format);
231
232 return desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED &&
233 desc->block.width == 2 &&
234 desc->block.height == 1 &&
235 desc->block.bits == 32;
236 }
237
238 boolean
239 util_format_is_supported(enum pipe_format format, unsigned bind)
240 {
241 if (util_format_is_s3tc(format) && !util_format_s3tc_enabled) {
242 return FALSE;
243 }
244
245 #ifndef TEXTURE_FLOAT_ENABLED
246 if ((bind & PIPE_BIND_RENDER_TARGET) &&
247 format != PIPE_FORMAT_R9G9B9E5_FLOAT &&
248 format != PIPE_FORMAT_R11G11B10_FLOAT &&
249 util_format_is_float(format)) {
250 return FALSE;
251 }
252 #endif
253
254 return TRUE;
255 }
256
257
258 /**
259 * Calculates the MRD for the depth format. MRD is used in depth bias
260 * for UNORM and unbound depth buffers. When the depth buffer is floating
261 * point, the depth bias calculation does not use the MRD. However, the
262 * default MRD will be 1.0 / ((1 << 24) - 1).
263 */
264 double
265 util_get_depth_format_mrd(const struct util_format_description *desc)
266 {
267 /*
268 * Depth buffer formats without a depth component OR scenarios
269 * without a bound depth buffer default to D24.
270 */
271 double mrd = 1.0 / ((1 << 24) - 1);
272 unsigned depth_channel;
273
274 assert(desc);
275
276 /*
277 * Some depth formats do not store the depth component in the first
278 * channel, detect the format and adjust the depth channel. Get the
279 * swizzled depth component channel.
280 */
281 depth_channel = desc->swizzle[0];
282
283 if (desc->channel[depth_channel].type == UTIL_FORMAT_TYPE_UNSIGNED &&
284 desc->channel[depth_channel].normalized) {
285 int depth_bits;
286
287 depth_bits = desc->channel[depth_channel].size;
288 mrd = 1.0 / ((1ULL << depth_bits) - 1);
289 }
290
291 return mrd;
292 }
293
294
295 void
296 util_format_read_4f(enum pipe_format format,
297 float *dst, unsigned dst_stride,
298 const void *src, unsigned src_stride,
299 unsigned x, unsigned y, unsigned w, unsigned h)
300 {
301 const struct util_format_description *format_desc;
302 const uint8_t *src_row;
303 float *dst_row;
304
305 format_desc = util_format_description(format);
306
307 assert(x % format_desc->block.width == 0);
308 assert(y % format_desc->block.height == 0);
309
310 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
311 dst_row = dst;
312
313 format_desc->unpack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
314 }
315
316
317 void
318 util_format_write_4f(enum pipe_format format,
319 const float *src, unsigned src_stride,
320 void *dst, unsigned dst_stride,
321 unsigned x, unsigned y, unsigned w, unsigned h)
322 {
323 const struct util_format_description *format_desc;
324 uint8_t *dst_row;
325 const float *src_row;
326
327 format_desc = util_format_description(format);
328
329 assert(x % format_desc->block.width == 0);
330 assert(y % format_desc->block.height == 0);
331
332 dst_row = (uint8_t *)dst + y*dst_stride + x*(format_desc->block.bits/8);
333 src_row = src;
334
335 format_desc->pack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
336 }
337
338
339 void
340 util_format_read_4ub(enum pipe_format format, uint8_t *dst, unsigned dst_stride, const void *src, unsigned src_stride, unsigned x, unsigned y, unsigned w, unsigned h)
341 {
342 const struct util_format_description *format_desc;
343 const uint8_t *src_row;
344 uint8_t *dst_row;
345
346 format_desc = util_format_description(format);
347
348 assert(x % format_desc->block.width == 0);
349 assert(y % format_desc->block.height == 0);
350
351 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
352 dst_row = dst;
353
354 format_desc->unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
355 }
356
357
358 void
359 util_format_write_4ub(enum pipe_format format, const uint8_t *src, unsigned src_stride, void *dst, unsigned dst_stride, unsigned x, unsigned y, unsigned w, unsigned h)
360 {
361 const struct util_format_description *format_desc;
362 uint8_t *dst_row;
363 const uint8_t *src_row;
364
365 format_desc = util_format_description(format);
366
367 assert(x % format_desc->block.width == 0);
368 assert(y % format_desc->block.height == 0);
369
370 dst_row = (uint8_t *)dst + y*dst_stride + x*(format_desc->block.bits/8);
371 src_row = src;
372
373 format_desc->pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
374 }
375
376 void
377 util_format_read_4ui(enum pipe_format format,
378 unsigned *dst, unsigned dst_stride,
379 const void *src, unsigned src_stride,
380 unsigned x, unsigned y, unsigned w, unsigned h)
381 {
382 const struct util_format_description *format_desc;
383 const uint8_t *src_row;
384 uint32_t *dst_row;
385
386 format_desc = util_format_description(format);
387
388 assert(x % format_desc->block.width == 0);
389 assert(y % format_desc->block.height == 0);
390
391 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
392 dst_row = dst;
393
394 format_desc->unpack_rgba_uint(dst_row, dst_stride, src_row, src_stride, w, h);
395 }
396
397 void
398 util_format_write_4ui(enum pipe_format format,
399 const unsigned int *src, unsigned src_stride,
400 void *dst, unsigned dst_stride,
401 unsigned x, unsigned y, unsigned w, unsigned h)
402 {
403 const struct util_format_description *format_desc;
404 uint8_t *dst_row;
405 const uint32_t *src_row;
406
407 format_desc = util_format_description(format);
408
409 assert(x % format_desc->block.width == 0);
410 assert(y % format_desc->block.height == 0);
411
412 dst_row = (uint8_t *)dst + y*dst_stride + x*(format_desc->block.bits/8);
413 src_row = src;
414
415 format_desc->pack_rgba_uint(dst_row, dst_stride, src_row, src_stride, w, h);
416 }
417
418 void
419 util_format_read_4i(enum pipe_format format,
420 int *dst, unsigned dst_stride,
421 const void *src, unsigned src_stride,
422 unsigned x, unsigned y, unsigned w, unsigned h)
423 {
424 const struct util_format_description *format_desc;
425 const uint8_t *src_row;
426 int32_t *dst_row;
427
428 format_desc = util_format_description(format);
429
430 assert(x % format_desc->block.width == 0);
431 assert(y % format_desc->block.height == 0);
432
433 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
434 dst_row = dst;
435
436 format_desc->unpack_rgba_sint(dst_row, dst_stride, src_row, src_stride, w, h);
437 }
438
439 void
440 util_format_write_4i(enum pipe_format format,
441 const int *src, unsigned src_stride,
442 void *dst, unsigned dst_stride,
443 unsigned x, unsigned y, unsigned w, unsigned h)
444 {
445 const struct util_format_description *format_desc;
446 uint8_t *dst_row;
447 const int32_t *src_row;
448
449 format_desc = util_format_description(format);
450
451 assert(x % format_desc->block.width == 0);
452 assert(y % format_desc->block.height == 0);
453
454 dst_row = (uint8_t *)dst + y*dst_stride + x*(format_desc->block.bits/8);
455 src_row = src;
456
457 format_desc->pack_rgba_sint(dst_row, dst_stride, src_row, src_stride, w, h);
458 }
459
460 boolean
461 util_is_format_compatible(const struct util_format_description *src_desc,
462 const struct util_format_description *dst_desc)
463 {
464 unsigned chan;
465
466 if (src_desc->format == dst_desc->format) {
467 return TRUE;
468 }
469
470 if (src_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN ||
471 dst_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN) {
472 return FALSE;
473 }
474
475 if (src_desc->block.bits != dst_desc->block.bits ||
476 src_desc->nr_channels != dst_desc->nr_channels ||
477 src_desc->colorspace != dst_desc->colorspace) {
478 return FALSE;
479 }
480
481 for (chan = 0; chan < 4; ++chan) {
482 if (src_desc->channel[chan].size !=
483 dst_desc->channel[chan].size) {
484 return FALSE;
485 }
486 }
487
488 for (chan = 0; chan < 4; ++chan) {
489 enum util_format_swizzle swizzle = dst_desc->swizzle[chan];
490
491 if (swizzle < 4) {
492 if (src_desc->swizzle[chan] != swizzle) {
493 return FALSE;
494 }
495 if ((src_desc->channel[swizzle].type !=
496 dst_desc->channel[swizzle].type) ||
497 (src_desc->channel[swizzle].normalized !=
498 dst_desc->channel[swizzle].normalized)) {
499 return FALSE;
500 }
501 }
502 }
503
504 return TRUE;
505 }
506
507
508 boolean
509 util_format_fits_8unorm(const struct util_format_description *format_desc)
510 {
511 unsigned chan;
512
513 /*
514 * After linearized sRGB values require more than 8bits.
515 */
516
517 if (format_desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
518 return FALSE;
519 }
520
521 switch (format_desc->layout) {
522
523 case UTIL_FORMAT_LAYOUT_S3TC:
524 /*
525 * These are straight forward.
526 */
527 return TRUE;
528 case UTIL_FORMAT_LAYOUT_RGTC:
529 if (format_desc->format == PIPE_FORMAT_RGTC1_SNORM ||
530 format_desc->format == PIPE_FORMAT_RGTC2_SNORM ||
531 format_desc->format == PIPE_FORMAT_LATC1_SNORM ||
532 format_desc->format == PIPE_FORMAT_LATC2_SNORM)
533 return FALSE;
534 return TRUE;
535 case UTIL_FORMAT_LAYOUT_BPTC:
536 if (format_desc->format == PIPE_FORMAT_BPTC_RGBA_UNORM)
537 return TRUE;
538 return FALSE;
539
540 case UTIL_FORMAT_LAYOUT_PLAIN:
541 /*
542 * For these we can find a generic rule.
543 */
544
545 for (chan = 0; chan < format_desc->nr_channels; ++chan) {
546 switch (format_desc->channel[chan].type) {
547 case UTIL_FORMAT_TYPE_VOID:
548 break;
549 case UTIL_FORMAT_TYPE_UNSIGNED:
550 if (!format_desc->channel[chan].normalized ||
551 format_desc->channel[chan].size > 8) {
552 return FALSE;
553 }
554 break;
555 default:
556 return FALSE;
557 }
558 }
559 return TRUE;
560
561 default:
562 /*
563 * Handle all others on a case by case basis.
564 */
565
566 switch (format_desc->format) {
567 case PIPE_FORMAT_R1_UNORM:
568 case PIPE_FORMAT_UYVY:
569 case PIPE_FORMAT_YUYV:
570 case PIPE_FORMAT_R8G8_B8G8_UNORM:
571 case PIPE_FORMAT_G8R8_G8B8_UNORM:
572 return TRUE;
573
574 default:
575 return FALSE;
576 }
577 }
578 }
579
580
581 boolean
582 util_format_translate(enum pipe_format dst_format,
583 void *dst, unsigned dst_stride,
584 unsigned dst_x, unsigned dst_y,
585 enum pipe_format src_format,
586 const void *src, unsigned src_stride,
587 unsigned src_x, unsigned src_y,
588 unsigned width, unsigned height)
589 {
590 const struct util_format_description *dst_format_desc;
591 const struct util_format_description *src_format_desc;
592 uint8_t *dst_row;
593 const uint8_t *src_row;
594 unsigned x_step, y_step;
595 unsigned dst_step;
596 unsigned src_step;
597
598 dst_format_desc = util_format_description(dst_format);
599 src_format_desc = util_format_description(src_format);
600
601 if (util_is_format_compatible(src_format_desc, dst_format_desc)) {
602 /*
603 * Trivial case.
604 */
605
606 util_copy_rect(dst, dst_format, dst_stride, dst_x, dst_y,
607 width, height, src, (int)src_stride,
608 src_x, src_y);
609 return TRUE;
610 }
611
612 assert(dst_x % dst_format_desc->block.width == 0);
613 assert(dst_y % dst_format_desc->block.height == 0);
614 assert(src_x % src_format_desc->block.width == 0);
615 assert(src_y % src_format_desc->block.height == 0);
616
617 dst_row = (uint8_t *)dst + dst_y*dst_stride + dst_x*(dst_format_desc->block.bits/8);
618 src_row = (const uint8_t *)src + src_y*src_stride + src_x*(src_format_desc->block.bits/8);
619
620 /*
621 * This works because all pixel formats have pixel blocks with power of two
622 * sizes.
623 */
624
625 y_step = MAX2(dst_format_desc->block.height, src_format_desc->block.height);
626 x_step = MAX2(dst_format_desc->block.width, src_format_desc->block.width);
627 assert(y_step % dst_format_desc->block.height == 0);
628 assert(y_step % src_format_desc->block.height == 0);
629
630 dst_step = y_step / dst_format_desc->block.height * dst_stride;
631 src_step = y_step / src_format_desc->block.height * src_stride;
632
633 /*
634 * TODO: double formats will loose precision
635 * TODO: Add a special case for formats that are mere swizzles of each other
636 */
637
638 if (src_format_desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS ||
639 dst_format_desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS) {
640 float *tmp_z = NULL;
641 uint8_t *tmp_s = NULL;
642
643 assert(x_step == 1);
644 assert(y_step == 1);
645
646 if (src_format_desc->unpack_z_float &&
647 dst_format_desc->pack_z_float) {
648 tmp_z = MALLOC(width * sizeof *tmp_z);
649 }
650
651 if (src_format_desc->unpack_s_8uint &&
652 dst_format_desc->pack_s_8uint) {
653 tmp_s = MALLOC(width * sizeof *tmp_s);
654 }
655
656 while (height--) {
657 if (tmp_z) {
658 src_format_desc->unpack_z_float(tmp_z, 0, src_row, src_stride, width, 1);
659 dst_format_desc->pack_z_float(dst_row, dst_stride, tmp_z, 0, width, 1);
660 }
661
662 if (tmp_s) {
663 src_format_desc->unpack_s_8uint(tmp_s, 0, src_row, src_stride, width, 1);
664 dst_format_desc->pack_s_8uint(dst_row, dst_stride, tmp_s, 0, width, 1);
665 }
666
667 dst_row += dst_step;
668 src_row += src_step;
669 }
670
671 FREE(tmp_s);
672
673 FREE(tmp_z);
674
675 return TRUE;
676 }
677
678 if (util_format_fits_8unorm(src_format_desc) ||
679 util_format_fits_8unorm(dst_format_desc)) {
680 unsigned tmp_stride;
681 uint8_t *tmp_row;
682
683 if (!src_format_desc->unpack_rgba_8unorm ||
684 !dst_format_desc->pack_rgba_8unorm) {
685 return FALSE;
686 }
687
688 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row;
689 tmp_row = MALLOC(y_step * tmp_stride);
690 if (!tmp_row)
691 return FALSE;
692
693 while (height >= y_step) {
694 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step);
695 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step);
696
697 dst_row += dst_step;
698 src_row += src_step;
699 height -= y_step;
700 }
701
702 if (height) {
703 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height);
704 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height);
705 }
706
707 FREE(tmp_row);
708 }
709 else {
710 unsigned tmp_stride;
711 float *tmp_row;
712
713 if (!src_format_desc->unpack_rgba_float ||
714 !dst_format_desc->pack_rgba_float) {
715 return FALSE;
716 }
717
718 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row;
719 tmp_row = MALLOC(y_step * tmp_stride);
720 if (!tmp_row)
721 return FALSE;
722
723 while (height >= y_step) {
724 src_format_desc->unpack_rgba_float(tmp_row, tmp_stride, src_row, src_stride, width, y_step);
725 dst_format_desc->pack_rgba_float(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step);
726
727 dst_row += dst_step;
728 src_row += src_step;
729 height -= y_step;
730 }
731
732 if (height) {
733 src_format_desc->unpack_rgba_float(tmp_row, tmp_stride, src_row, src_stride, width, height);
734 dst_format_desc->pack_rgba_float(dst_row, dst_stride, tmp_row, tmp_stride, width, height);
735 }
736
737 FREE(tmp_row);
738 }
739 return TRUE;
740 }
741
742 void util_format_compose_swizzles(const unsigned char swz1[4],
743 const unsigned char swz2[4],
744 unsigned char dst[4])
745 {
746 unsigned i;
747
748 for (i = 0; i < 4; i++) {
749 dst[i] = swz2[i] <= UTIL_FORMAT_SWIZZLE_W ?
750 swz1[swz2[i]] : swz2[i];
751 }
752 }
753
754 void util_format_apply_color_swizzle(union pipe_color_union *dst,
755 const union pipe_color_union *src,
756 const unsigned char swz[4],
757 const boolean is_integer)
758 {
759 unsigned c;
760
761 if (is_integer) {
762 for (c = 0; c < 4; ++c) {
763 switch (swz[c]) {
764 case PIPE_SWIZZLE_RED: dst->ui[c] = src->ui[0]; break;
765 case PIPE_SWIZZLE_GREEN: dst->ui[c] = src->ui[1]; break;
766 case PIPE_SWIZZLE_BLUE: dst->ui[c] = src->ui[2]; break;
767 case PIPE_SWIZZLE_ALPHA: dst->ui[c] = src->ui[3]; break;
768 default:
769 dst->ui[c] = (swz[c] == PIPE_SWIZZLE_ONE) ? 1 : 0;
770 break;
771 }
772 }
773 } else {
774 for (c = 0; c < 4; ++c) {
775 switch (swz[c]) {
776 case PIPE_SWIZZLE_RED: dst->f[c] = src->f[0]; break;
777 case PIPE_SWIZZLE_GREEN: dst->f[c] = src->f[1]; break;
778 case PIPE_SWIZZLE_BLUE: dst->f[c] = src->f[2]; break;
779 case PIPE_SWIZZLE_ALPHA: dst->f[c] = src->f[3]; break;
780 default:
781 dst->f[c] = (swz[c] == PIPE_SWIZZLE_ONE) ? 1.0f : 0.0f;
782 break;
783 }
784 }
785 }
786 }
787
788 void util_format_swizzle_4f(float *dst, const float *src,
789 const unsigned char swz[4])
790 {
791 unsigned i;
792
793 for (i = 0; i < 4; i++) {
794 if (swz[i] <= UTIL_FORMAT_SWIZZLE_W)
795 dst[i] = src[swz[i]];
796 else if (swz[i] == UTIL_FORMAT_SWIZZLE_0)
797 dst[i] = 0;
798 else if (swz[i] == UTIL_FORMAT_SWIZZLE_1)
799 dst[i] = 1;
800 }
801 }
802
803 void util_format_unswizzle_4f(float *dst, const float *src,
804 const unsigned char swz[4])
805 {
806 unsigned i;
807
808 for (i = 0; i < 4; i++) {
809 switch (swz[i]) {
810 case UTIL_FORMAT_SWIZZLE_X:
811 dst[0] = src[i];
812 break;
813 case UTIL_FORMAT_SWIZZLE_Y:
814 dst[1] = src[i];
815 break;
816 case UTIL_FORMAT_SWIZZLE_Z:
817 dst[2] = src[i];
818 break;
819 case UTIL_FORMAT_SWIZZLE_W:
820 dst[3] = src[i];
821 break;
822 }
823 }
824 }