gallium/util: implement util_format_is_yuv
[mesa.git] / src / gallium / auxiliary / util / u_format.h
1 /**************************************************************************
2 *
3 * Copyright 2009-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 #ifndef U_FORMAT_H
30 #define U_FORMAT_H
31
32
33 #include "pipe/p_format.h"
34 #include "pipe/p_defines.h"
35 #include "util/u_debug.h"
36
37 union pipe_color_union;
38
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44
45 /**
46 * Describe how to pack/unpack pixels into/from the prescribed format.
47 *
48 * XXX: This could be renamed to something like util_format_pack, or broke down
49 * in flags inside util_format_block that said exactly what we want.
50 */
51 enum util_format_layout {
52 /**
53 * Formats with util_format_block::width == util_format_block::height == 1
54 * that can be described as an ordinary data structure.
55 */
56 UTIL_FORMAT_LAYOUT_PLAIN = 0,
57
58 /**
59 * Formats with sub-sampled channels.
60 *
61 * This is for formats like YVYU where there is less than one sample per
62 * pixel.
63 */
64 UTIL_FORMAT_LAYOUT_SUBSAMPLED = 3,
65
66 /**
67 * S3 Texture Compression formats.
68 */
69 UTIL_FORMAT_LAYOUT_S3TC = 4,
70
71 /**
72 * Red-Green Texture Compression formats.
73 */
74 UTIL_FORMAT_LAYOUT_RGTC = 5,
75
76 /**
77 * Ericsson Texture Compression
78 */
79 UTIL_FORMAT_LAYOUT_ETC = 6,
80
81 /**
82 * BC6/7 Texture Compression
83 */
84 UTIL_FORMAT_LAYOUT_BPTC = 7,
85
86 /**
87 * ASTC
88 */
89 UTIL_FORMAT_LAYOUT_ASTC = 8,
90
91 /**
92 * Everything else that doesn't fit in any of the above layouts.
93 */
94 UTIL_FORMAT_LAYOUT_OTHER = 9
95 };
96
97
98 struct util_format_block
99 {
100 /** Block width in pixels */
101 unsigned width;
102
103 /** Block height in pixels */
104 unsigned height;
105
106 /** Block size in bits */
107 unsigned bits;
108 };
109
110
111 enum util_format_type {
112 UTIL_FORMAT_TYPE_VOID = 0,
113 UTIL_FORMAT_TYPE_UNSIGNED = 1,
114 UTIL_FORMAT_TYPE_SIGNED = 2,
115 UTIL_FORMAT_TYPE_FIXED = 3,
116 UTIL_FORMAT_TYPE_FLOAT = 4
117 };
118
119
120 enum util_format_colorspace {
121 UTIL_FORMAT_COLORSPACE_RGB = 0,
122 UTIL_FORMAT_COLORSPACE_SRGB = 1,
123 UTIL_FORMAT_COLORSPACE_YUV = 2,
124 UTIL_FORMAT_COLORSPACE_ZS = 3
125 };
126
127
128 struct util_format_channel_description
129 {
130 unsigned type:5; /**< UTIL_FORMAT_TYPE_x */
131 unsigned normalized:1;
132 unsigned pure_integer:1;
133 unsigned size:9; /**< bits per channel */
134 unsigned shift:16; /** number of bits from lsb */
135 };
136
137
138 struct util_format_description
139 {
140 enum pipe_format format;
141
142 const char *name;
143
144 /**
145 * Short name, striped of the prefix, lower case.
146 */
147 const char *short_name;
148
149 /**
150 * Pixel block dimensions.
151 */
152 struct util_format_block block;
153
154 enum util_format_layout layout;
155
156 /**
157 * The number of channels.
158 */
159 unsigned nr_channels:3;
160
161 /**
162 * Whether all channels have the same number of (whole) bytes and type.
163 */
164 unsigned is_array:1;
165
166 /**
167 * Whether the pixel format can be described as a bitfield structure.
168 *
169 * In particular:
170 * - pixel depth must be 8, 16, or 32 bits;
171 * - all channels must be unsigned, signed, or void
172 */
173 unsigned is_bitmask:1;
174
175 /**
176 * Whether channels have mixed types (ignoring UTIL_FORMAT_TYPE_VOID).
177 */
178 unsigned is_mixed:1;
179
180 /**
181 * Input channel description, in the order XYZW.
182 *
183 * Only valid for UTIL_FORMAT_LAYOUT_PLAIN formats.
184 *
185 * If each channel is accessed as an individual N-byte value, X is always
186 * at the lowest address in memory, Y is always next, and so on. For all
187 * currently-defined formats, the N-byte value has native endianness.
188 *
189 * If instead a group of channels is accessed as a single N-byte value,
190 * the order of the channels within that value depends on endianness.
191 * For big-endian targets, X is the most significant subvalue,
192 * otherwise it is the least significant one.
193 *
194 * For example, if X is 8 bits and Y is 24 bits, the memory order is:
195 *
196 * 0 1 2 3
197 * little-endian: X Yl Ym Yu (l = lower, m = middle, u = upper)
198 * big-endian: X Yu Ym Yl
199 *
200 * If X is 5 bits, Y is 5 bits, Z is 5 bits and W is 1 bit, the layout is:
201 *
202 * 0 1
203 * msb lsb msb lsb
204 * little-endian: YYYXXXXX WZZZZZYY
205 * big-endian: XXXXXYYY YYZZZZZW
206 */
207 struct util_format_channel_description channel[4];
208
209 /**
210 * Output channel swizzle.
211 *
212 * The order is either:
213 * - RGBA
214 * - YUV(A)
215 * - ZS
216 * depending on the colorspace.
217 */
218 unsigned char swizzle[4];
219
220 /**
221 * Colorspace transformation.
222 */
223 enum util_format_colorspace colorspace;
224
225 /**
226 * Unpack pixel blocks to R8G8B8A8_UNORM.
227 * Note: strides are in bytes.
228 *
229 * Only defined for non-depth-stencil formats.
230 */
231 void
232 (*unpack_rgba_8unorm)(uint8_t *dst, unsigned dst_stride,
233 const uint8_t *src, unsigned src_stride,
234 unsigned width, unsigned height);
235
236 /**
237 * Pack pixel blocks from R8G8B8A8_UNORM.
238 * Note: strides are in bytes.
239 *
240 * Only defined for non-depth-stencil formats.
241 */
242 void
243 (*pack_rgba_8unorm)(uint8_t *dst, unsigned dst_stride,
244 const uint8_t *src, unsigned src_stride,
245 unsigned width, unsigned height);
246
247 /**
248 * Fetch a single pixel (i, j) from a block.
249 *
250 * XXX: Only defined for a very few select formats.
251 */
252 void
253 (*fetch_rgba_8unorm)(uint8_t *dst,
254 const uint8_t *src,
255 unsigned i, unsigned j);
256
257 /**
258 * Unpack pixel blocks to R32G32B32A32_FLOAT.
259 * Note: strides are in bytes.
260 *
261 * Only defined for non-depth-stencil formats.
262 */
263 void
264 (*unpack_rgba_float)(float *dst, unsigned dst_stride,
265 const uint8_t *src, unsigned src_stride,
266 unsigned width, unsigned height);
267
268 /**
269 * Pack pixel blocks from R32G32B32A32_FLOAT.
270 * Note: strides are in bytes.
271 *
272 * Only defined for non-depth-stencil formats.
273 */
274 void
275 (*pack_rgba_float)(uint8_t *dst, unsigned dst_stride,
276 const float *src, unsigned src_stride,
277 unsigned width, unsigned height);
278
279 /**
280 * Fetch a single pixel (i, j) from a block.
281 *
282 * Only defined for non-depth-stencil and non-integer formats.
283 */
284 void
285 (*fetch_rgba_float)(float *dst,
286 const uint8_t *src,
287 unsigned i, unsigned j);
288
289 /**
290 * Unpack pixels to Z32_UNORM.
291 * Note: strides are in bytes.
292 *
293 * Only defined for depth formats.
294 */
295 void
296 (*unpack_z_32unorm)(uint32_t *dst, unsigned dst_stride,
297 const uint8_t *src, unsigned src_stride,
298 unsigned width, unsigned height);
299
300 /**
301 * Pack pixels from Z32_FLOAT.
302 * Note: strides are in bytes.
303 *
304 * Only defined for depth formats.
305 */
306 void
307 (*pack_z_32unorm)(uint8_t *dst, unsigned dst_stride,
308 const uint32_t *src, unsigned src_stride,
309 unsigned width, unsigned height);
310
311 /**
312 * Unpack pixels to Z32_FLOAT.
313 * Note: strides are in bytes.
314 *
315 * Only defined for depth formats.
316 */
317 void
318 (*unpack_z_float)(float *dst, unsigned dst_stride,
319 const uint8_t *src, unsigned src_stride,
320 unsigned width, unsigned height);
321
322 /**
323 * Pack pixels from Z32_FLOAT.
324 * Note: strides are in bytes.
325 *
326 * Only defined for depth formats.
327 */
328 void
329 (*pack_z_float)(uint8_t *dst, unsigned dst_stride,
330 const float *src, unsigned src_stride,
331 unsigned width, unsigned height);
332
333 /**
334 * Unpack pixels to S8_UINT.
335 * Note: strides are in bytes.
336 *
337 * Only defined for stencil formats.
338 */
339 void
340 (*unpack_s_8uint)(uint8_t *dst, unsigned dst_stride,
341 const uint8_t *src, unsigned src_stride,
342 unsigned width, unsigned height);
343
344 /**
345 * Pack pixels from S8_UINT.
346 * Note: strides are in bytes.
347 *
348 * Only defined for stencil formats.
349 */
350 void
351 (*pack_s_8uint)(uint8_t *dst, unsigned dst_stride,
352 const uint8_t *src, unsigned src_stride,
353 unsigned width, unsigned height);
354
355 /**
356 * Unpack pixel blocks to R32G32B32A32_UINT.
357 * Note: strides are in bytes.
358 *
359 * Only defined for INT formats.
360 */
361 void
362 (*unpack_rgba_uint)(uint32_t *dst, unsigned dst_stride,
363 const uint8_t *src, unsigned src_stride,
364 unsigned width, unsigned height);
365
366 void
367 (*pack_rgba_uint)(uint8_t *dst, unsigned dst_stride,
368 const uint32_t *src, unsigned src_stride,
369 unsigned width, unsigned height);
370
371 /**
372 * Unpack pixel blocks to R32G32B32A32_SINT.
373 * Note: strides are in bytes.
374 *
375 * Only defined for INT formats.
376 */
377 void
378 (*unpack_rgba_sint)(int32_t *dst, unsigned dst_stride,
379 const uint8_t *src, unsigned src_stride,
380 unsigned width, unsigned height);
381
382 void
383 (*pack_rgba_sint)(uint8_t *dst, unsigned dst_stride,
384 const int32_t *src, unsigned src_stride,
385 unsigned width, unsigned height);
386
387 /**
388 * Fetch a single pixel (i, j) from a block.
389 *
390 * Only defined for unsigned (pure) integer formats.
391 */
392 void
393 (*fetch_rgba_uint)(uint32_t *dst,
394 const uint8_t *src,
395 unsigned i, unsigned j);
396
397 /**
398 * Fetch a single pixel (i, j) from a block.
399 *
400 * Only defined for signed (pure) integer formats.
401 */
402 void
403 (*fetch_rgba_sint)(int32_t *dst,
404 const uint8_t *src,
405 unsigned i, unsigned j);
406 };
407
408
409 extern const struct util_format_description
410 util_format_description_table[];
411
412
413 const struct util_format_description *
414 util_format_description(enum pipe_format format);
415
416
417 /*
418 * Format query functions.
419 */
420
421 static inline const char *
422 util_format_name(enum pipe_format format)
423 {
424 const struct util_format_description *desc = util_format_description(format);
425
426 assert(desc);
427 if (!desc) {
428 return "PIPE_FORMAT_???";
429 }
430
431 return desc->name;
432 }
433
434 static inline const char *
435 util_format_short_name(enum pipe_format format)
436 {
437 const struct util_format_description *desc = util_format_description(format);
438
439 assert(desc);
440 if (!desc) {
441 return "???";
442 }
443
444 return desc->short_name;
445 }
446
447 /**
448 * Whether this format is plain, see UTIL_FORMAT_LAYOUT_PLAIN for more info.
449 */
450 static inline boolean
451 util_format_is_plain(enum pipe_format format)
452 {
453 const struct util_format_description *desc = util_format_description(format);
454
455 if (!format) {
456 return FALSE;
457 }
458
459 return desc->layout == UTIL_FORMAT_LAYOUT_PLAIN ? TRUE : FALSE;
460 }
461
462 static inline boolean
463 util_format_is_compressed(enum pipe_format format)
464 {
465 const struct util_format_description *desc = util_format_description(format);
466
467 assert(desc);
468 if (!desc) {
469 return FALSE;
470 }
471
472 switch (desc->layout) {
473 case UTIL_FORMAT_LAYOUT_S3TC:
474 case UTIL_FORMAT_LAYOUT_RGTC:
475 case UTIL_FORMAT_LAYOUT_ETC:
476 case UTIL_FORMAT_LAYOUT_BPTC:
477 case UTIL_FORMAT_LAYOUT_ASTC:
478 /* XXX add other formats in the future */
479 return TRUE;
480 default:
481 return FALSE;
482 }
483 }
484
485 static inline boolean
486 util_format_is_s3tc(enum pipe_format format)
487 {
488 const struct util_format_description *desc = util_format_description(format);
489
490 assert(desc);
491 if (!desc) {
492 return FALSE;
493 }
494
495 return desc->layout == UTIL_FORMAT_LAYOUT_S3TC ? TRUE : FALSE;
496 }
497
498 static inline boolean
499 util_format_is_etc(enum pipe_format format)
500 {
501 const struct util_format_description *desc = util_format_description(format);
502
503 assert(desc);
504 if (!desc) {
505 return FALSE;
506 }
507
508 return desc->layout == UTIL_FORMAT_LAYOUT_ETC ? TRUE : FALSE;
509 }
510
511 static inline boolean
512 util_format_is_srgb(enum pipe_format format)
513 {
514 const struct util_format_description *desc = util_format_description(format);
515 return desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB;
516 }
517
518 static inline boolean
519 util_format_has_depth(const struct util_format_description *desc)
520 {
521 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
522 desc->swizzle[0] != PIPE_SWIZZLE_NONE;
523 }
524
525 static inline boolean
526 util_format_has_stencil(const struct util_format_description *desc)
527 {
528 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
529 desc->swizzle[1] != PIPE_SWIZZLE_NONE;
530 }
531
532 static inline boolean
533 util_format_is_depth_or_stencil(enum pipe_format format)
534 {
535 const struct util_format_description *desc = util_format_description(format);
536
537 assert(desc);
538 if (!desc) {
539 return FALSE;
540 }
541
542 return util_format_has_depth(desc) ||
543 util_format_has_stencil(desc);
544 }
545
546 static inline boolean
547 util_format_is_depth_and_stencil(enum pipe_format format)
548 {
549 const struct util_format_description *desc = util_format_description(format);
550
551 assert(desc);
552 if (!desc) {
553 return FALSE;
554 }
555
556 return util_format_has_depth(desc) &&
557 util_format_has_stencil(desc);
558 }
559
560 static inline boolean
561 util_format_is_yuv(enum pipe_format format)
562 {
563 const struct util_format_description *desc = util_format_description(format);
564
565 assert(desc);
566 if (!desc) {
567 return FALSE;
568 }
569
570 return desc->colorspace == UTIL_FORMAT_COLORSPACE_YUV;
571 }
572
573 /**
574 * Calculates the depth format type based upon the incoming format description.
575 */
576 static inline unsigned
577 util_get_depth_format_type(const struct util_format_description *desc)
578 {
579 unsigned depth_channel = desc->swizzle[0];
580 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
581 depth_channel != PIPE_SWIZZLE_NONE) {
582 return desc->channel[depth_channel].type;
583 } else {
584 return UTIL_FORMAT_TYPE_VOID;
585 }
586 }
587
588
589 /**
590 * Calculates the MRD for the depth format. MRD is used in depth bias
591 * for UNORM and unbound depth buffers. When the depth buffer is floating
592 * point, the depth bias calculation does not use the MRD. However, the
593 * default MRD will be 1.0 / ((1 << 24) - 1).
594 */
595 double
596 util_get_depth_format_mrd(const struct util_format_description *desc);
597
598
599 /**
600 * Return whether this is an RGBA, Z, S, or combined ZS format.
601 * Useful for initializing pipe_blit_info::mask.
602 */
603 static inline unsigned
604 util_format_get_mask(enum pipe_format format)
605 {
606 const struct util_format_description *desc =
607 util_format_description(format);
608
609 if (!desc)
610 return 0;
611
612 if (util_format_has_depth(desc)) {
613 if (util_format_has_stencil(desc)) {
614 return PIPE_MASK_ZS;
615 } else {
616 return PIPE_MASK_Z;
617 }
618 } else {
619 if (util_format_has_stencil(desc)) {
620 return PIPE_MASK_S;
621 } else {
622 return PIPE_MASK_RGBA;
623 }
624 }
625 }
626
627 /**
628 * Give the RGBA colormask of the channels that can be represented in this
629 * format.
630 *
631 * That is, the channels whose values are preserved.
632 */
633 static inline unsigned
634 util_format_colormask(const struct util_format_description *desc)
635 {
636 unsigned colormask;
637 unsigned chan;
638
639 switch (desc->colorspace) {
640 case UTIL_FORMAT_COLORSPACE_RGB:
641 case UTIL_FORMAT_COLORSPACE_SRGB:
642 case UTIL_FORMAT_COLORSPACE_YUV:
643 colormask = 0;
644 for (chan = 0; chan < 4; ++chan) {
645 if (desc->swizzle[chan] < 4) {
646 colormask |= (1 << chan);
647 }
648 }
649 return colormask;
650 case UTIL_FORMAT_COLORSPACE_ZS:
651 return 0;
652 default:
653 assert(0);
654 return 0;
655 }
656 }
657
658
659 /**
660 * Checks if color mask covers every channel for the specified format
661 *
662 * @param desc a format description to check colormask with
663 * @param colormask a bit mask for channels, matches format of PIPE_MASK_RGBA
664 */
665 static inline boolean
666 util_format_colormask_full(const struct util_format_description *desc, unsigned colormask)
667 {
668 return (~colormask & util_format_colormask(desc)) == 0;
669 }
670
671
672 boolean
673 util_format_is_float(enum pipe_format format);
674
675
676 boolean
677 util_format_has_alpha(enum pipe_format format);
678
679
680 boolean
681 util_format_is_luminance(enum pipe_format format);
682
683 boolean
684 util_format_is_alpha(enum pipe_format format);
685
686 boolean
687 util_format_is_luminance_alpha(enum pipe_format format);
688
689
690 boolean
691 util_format_is_intensity(enum pipe_format format);
692
693 boolean
694 util_format_is_subsampled_422(enum pipe_format format);
695
696 boolean
697 util_format_is_pure_integer(enum pipe_format format);
698
699 boolean
700 util_format_is_pure_sint(enum pipe_format format);
701
702 boolean
703 util_format_is_pure_uint(enum pipe_format format);
704
705 boolean
706 util_format_is_snorm(enum pipe_format format);
707
708 boolean
709 util_format_is_snorm8(enum pipe_format format);
710
711 /**
712 * Check if the src format can be blitted to the destination format with
713 * a simple memcpy. For example, blitting from RGBA to RGBx is OK, but not
714 * the reverse.
715 */
716 boolean
717 util_is_format_compatible(const struct util_format_description *src_desc,
718 const struct util_format_description *dst_desc);
719
720 /**
721 * Whether the format is supported by Gallium for the given bindings.
722 * This covers S3TC textures and floating-point render targets.
723 */
724 boolean
725 util_format_is_supported(enum pipe_format format, unsigned bind);
726
727 /**
728 * Whether this format is a rgab8 variant.
729 *
730 * That is, any format that matches the
731 *
732 * PIPE_FORMAT_?8?8?8?8_UNORM
733 */
734 static inline boolean
735 util_format_is_rgba8_variant(const struct util_format_description *desc)
736 {
737 unsigned chan;
738
739 if(desc->block.width != 1 ||
740 desc->block.height != 1 ||
741 desc->block.bits != 32)
742 return FALSE;
743
744 for(chan = 0; chan < 4; ++chan) {
745 if(desc->channel[chan].type != UTIL_FORMAT_TYPE_UNSIGNED &&
746 desc->channel[chan].type != UTIL_FORMAT_TYPE_VOID)
747 return FALSE;
748 if(desc->channel[chan].type == UTIL_FORMAT_TYPE_UNSIGNED &&
749 !desc->channel[chan].normalized)
750 return FALSE;
751 if(desc->channel[chan].size != 8)
752 return FALSE;
753 }
754
755 return TRUE;
756 }
757
758
759 /**
760 * Return total bits needed for the pixel format per block.
761 */
762 static inline uint
763 util_format_get_blocksizebits(enum pipe_format format)
764 {
765 const struct util_format_description *desc = util_format_description(format);
766
767 assert(desc);
768 if (!desc) {
769 return 0;
770 }
771
772 return desc->block.bits;
773 }
774
775 /**
776 * Return bytes per block (not pixel) for the given format.
777 */
778 static inline uint
779 util_format_get_blocksize(enum pipe_format format)
780 {
781 uint bits = util_format_get_blocksizebits(format);
782 uint bytes = bits / 8;
783
784 assert(bits % 8 == 0);
785 assert(bytes > 0);
786 if (bytes == 0) {
787 bytes = 1;
788 }
789
790 return bytes;
791 }
792
793 static inline uint
794 util_format_get_blockwidth(enum pipe_format format)
795 {
796 const struct util_format_description *desc = util_format_description(format);
797
798 assert(desc);
799 if (!desc) {
800 return 1;
801 }
802
803 return desc->block.width;
804 }
805
806 static inline uint
807 util_format_get_blockheight(enum pipe_format format)
808 {
809 const struct util_format_description *desc = util_format_description(format);
810
811 assert(desc);
812 if (!desc) {
813 return 1;
814 }
815
816 return desc->block.height;
817 }
818
819 static inline unsigned
820 util_format_get_nblocksx(enum pipe_format format,
821 unsigned x)
822 {
823 unsigned blockwidth = util_format_get_blockwidth(format);
824 return (x + blockwidth - 1) / blockwidth;
825 }
826
827 static inline unsigned
828 util_format_get_nblocksy(enum pipe_format format,
829 unsigned y)
830 {
831 unsigned blockheight = util_format_get_blockheight(format);
832 return (y + blockheight - 1) / blockheight;
833 }
834
835 static inline unsigned
836 util_format_get_nblocks(enum pipe_format format,
837 unsigned width,
838 unsigned height)
839 {
840 return util_format_get_nblocksx(format, width) * util_format_get_nblocksy(format, height);
841 }
842
843 static inline size_t
844 util_format_get_stride(enum pipe_format format,
845 unsigned width)
846 {
847 return util_format_get_nblocksx(format, width) * util_format_get_blocksize(format);
848 }
849
850 static inline size_t
851 util_format_get_2d_size(enum pipe_format format,
852 size_t stride,
853 unsigned height)
854 {
855 return util_format_get_nblocksy(format, height) * stride;
856 }
857
858 static inline uint
859 util_format_get_component_bits(enum pipe_format format,
860 enum util_format_colorspace colorspace,
861 uint component)
862 {
863 const struct util_format_description *desc = util_format_description(format);
864 enum util_format_colorspace desc_colorspace;
865
866 assert(format);
867 if (!format) {
868 return 0;
869 }
870
871 assert(component < 4);
872
873 /* Treat RGB and SRGB as equivalent. */
874 if (colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
875 colorspace = UTIL_FORMAT_COLORSPACE_RGB;
876 }
877 if (desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
878 desc_colorspace = UTIL_FORMAT_COLORSPACE_RGB;
879 } else {
880 desc_colorspace = desc->colorspace;
881 }
882
883 if (desc_colorspace != colorspace) {
884 return 0;
885 }
886
887 switch (desc->swizzle[component]) {
888 case PIPE_SWIZZLE_X:
889 return desc->channel[0].size;
890 case PIPE_SWIZZLE_Y:
891 return desc->channel[1].size;
892 case PIPE_SWIZZLE_Z:
893 return desc->channel[2].size;
894 case PIPE_SWIZZLE_W:
895 return desc->channel[3].size;
896 default:
897 return 0;
898 }
899 }
900
901 /**
902 * Given a linear RGB colorspace format, return the corresponding SRGB
903 * format, or PIPE_FORMAT_NONE if none.
904 */
905 static inline enum pipe_format
906 util_format_srgb(enum pipe_format format)
907 {
908 if (util_format_is_srgb(format))
909 return format;
910
911 switch (format) {
912 case PIPE_FORMAT_L8_UNORM:
913 return PIPE_FORMAT_L8_SRGB;
914 case PIPE_FORMAT_L8A8_UNORM:
915 return PIPE_FORMAT_L8A8_SRGB;
916 case PIPE_FORMAT_R8G8B8_UNORM:
917 return PIPE_FORMAT_R8G8B8_SRGB;
918 case PIPE_FORMAT_A8B8G8R8_UNORM:
919 return PIPE_FORMAT_A8B8G8R8_SRGB;
920 case PIPE_FORMAT_X8B8G8R8_UNORM:
921 return PIPE_FORMAT_X8B8G8R8_SRGB;
922 case PIPE_FORMAT_B8G8R8A8_UNORM:
923 return PIPE_FORMAT_B8G8R8A8_SRGB;
924 case PIPE_FORMAT_B8G8R8X8_UNORM:
925 return PIPE_FORMAT_B8G8R8X8_SRGB;
926 case PIPE_FORMAT_A8R8G8B8_UNORM:
927 return PIPE_FORMAT_A8R8G8B8_SRGB;
928 case PIPE_FORMAT_X8R8G8B8_UNORM:
929 return PIPE_FORMAT_X8R8G8B8_SRGB;
930 case PIPE_FORMAT_R8G8B8A8_UNORM:
931 return PIPE_FORMAT_R8G8B8A8_SRGB;
932 case PIPE_FORMAT_R8G8B8X8_UNORM:
933 return PIPE_FORMAT_R8G8B8X8_SRGB;
934 case PIPE_FORMAT_DXT1_RGB:
935 return PIPE_FORMAT_DXT1_SRGB;
936 case PIPE_FORMAT_DXT1_RGBA:
937 return PIPE_FORMAT_DXT1_SRGBA;
938 case PIPE_FORMAT_DXT3_RGBA:
939 return PIPE_FORMAT_DXT3_SRGBA;
940 case PIPE_FORMAT_DXT5_RGBA:
941 return PIPE_FORMAT_DXT5_SRGBA;
942 case PIPE_FORMAT_B5G6R5_UNORM:
943 return PIPE_FORMAT_B5G6R5_SRGB;
944 case PIPE_FORMAT_BPTC_RGBA_UNORM:
945 return PIPE_FORMAT_BPTC_SRGBA;
946 case PIPE_FORMAT_ASTC_4x4:
947 return PIPE_FORMAT_ASTC_4x4_SRGB;
948 case PIPE_FORMAT_ASTC_5x4:
949 return PIPE_FORMAT_ASTC_5x4_SRGB;
950 case PIPE_FORMAT_ASTC_5x5:
951 return PIPE_FORMAT_ASTC_5x5_SRGB;
952 case PIPE_FORMAT_ASTC_6x5:
953 return PIPE_FORMAT_ASTC_6x5_SRGB;
954 case PIPE_FORMAT_ASTC_6x6:
955 return PIPE_FORMAT_ASTC_6x6_SRGB;
956 case PIPE_FORMAT_ASTC_8x5:
957 return PIPE_FORMAT_ASTC_8x5_SRGB;
958 case PIPE_FORMAT_ASTC_8x6:
959 return PIPE_FORMAT_ASTC_8x6_SRGB;
960 case PIPE_FORMAT_ASTC_8x8:
961 return PIPE_FORMAT_ASTC_8x8_SRGB;
962 case PIPE_FORMAT_ASTC_10x5:
963 return PIPE_FORMAT_ASTC_10x5_SRGB;
964 case PIPE_FORMAT_ASTC_10x6:
965 return PIPE_FORMAT_ASTC_10x6_SRGB;
966 case PIPE_FORMAT_ASTC_10x8:
967 return PIPE_FORMAT_ASTC_10x8_SRGB;
968 case PIPE_FORMAT_ASTC_10x10:
969 return PIPE_FORMAT_ASTC_10x10_SRGB;
970 case PIPE_FORMAT_ASTC_12x10:
971 return PIPE_FORMAT_ASTC_12x10_SRGB;
972 case PIPE_FORMAT_ASTC_12x12:
973 return PIPE_FORMAT_ASTC_12x12_SRGB;
974
975 default:
976 return PIPE_FORMAT_NONE;
977 }
978 }
979
980 /**
981 * Given an sRGB format, return the corresponding linear colorspace format.
982 * For non sRGB formats, return the format unchanged.
983 */
984 static inline enum pipe_format
985 util_format_linear(enum pipe_format format)
986 {
987 switch (format) {
988 case PIPE_FORMAT_L8_SRGB:
989 return PIPE_FORMAT_L8_UNORM;
990 case PIPE_FORMAT_L8A8_SRGB:
991 return PIPE_FORMAT_L8A8_UNORM;
992 case PIPE_FORMAT_R8G8B8_SRGB:
993 return PIPE_FORMAT_R8G8B8_UNORM;
994 case PIPE_FORMAT_A8B8G8R8_SRGB:
995 return PIPE_FORMAT_A8B8G8R8_UNORM;
996 case PIPE_FORMAT_X8B8G8R8_SRGB:
997 return PIPE_FORMAT_X8B8G8R8_UNORM;
998 case PIPE_FORMAT_B8G8R8A8_SRGB:
999 return PIPE_FORMAT_B8G8R8A8_UNORM;
1000 case PIPE_FORMAT_B8G8R8X8_SRGB:
1001 return PIPE_FORMAT_B8G8R8X8_UNORM;
1002 case PIPE_FORMAT_A8R8G8B8_SRGB:
1003 return PIPE_FORMAT_A8R8G8B8_UNORM;
1004 case PIPE_FORMAT_X8R8G8B8_SRGB:
1005 return PIPE_FORMAT_X8R8G8B8_UNORM;
1006 case PIPE_FORMAT_R8G8B8A8_SRGB:
1007 return PIPE_FORMAT_R8G8B8A8_UNORM;
1008 case PIPE_FORMAT_R8G8B8X8_SRGB:
1009 return PIPE_FORMAT_R8G8B8X8_UNORM;
1010 case PIPE_FORMAT_DXT1_SRGB:
1011 return PIPE_FORMAT_DXT1_RGB;
1012 case PIPE_FORMAT_DXT1_SRGBA:
1013 return PIPE_FORMAT_DXT1_RGBA;
1014 case PIPE_FORMAT_DXT3_SRGBA:
1015 return PIPE_FORMAT_DXT3_RGBA;
1016 case PIPE_FORMAT_DXT5_SRGBA:
1017 return PIPE_FORMAT_DXT5_RGBA;
1018 case PIPE_FORMAT_B5G6R5_SRGB:
1019 return PIPE_FORMAT_B5G6R5_UNORM;
1020 case PIPE_FORMAT_BPTC_SRGBA:
1021 return PIPE_FORMAT_BPTC_RGBA_UNORM;
1022 case PIPE_FORMAT_ASTC_4x4_SRGB:
1023 return PIPE_FORMAT_ASTC_4x4;
1024 case PIPE_FORMAT_ASTC_5x4_SRGB:
1025 return PIPE_FORMAT_ASTC_5x4;
1026 case PIPE_FORMAT_ASTC_5x5_SRGB:
1027 return PIPE_FORMAT_ASTC_5x5;
1028 case PIPE_FORMAT_ASTC_6x5_SRGB:
1029 return PIPE_FORMAT_ASTC_6x5;
1030 case PIPE_FORMAT_ASTC_6x6_SRGB:
1031 return PIPE_FORMAT_ASTC_6x6;
1032 case PIPE_FORMAT_ASTC_8x5_SRGB:
1033 return PIPE_FORMAT_ASTC_8x5;
1034 case PIPE_FORMAT_ASTC_8x6_SRGB:
1035 return PIPE_FORMAT_ASTC_8x6;
1036 case PIPE_FORMAT_ASTC_8x8_SRGB:
1037 return PIPE_FORMAT_ASTC_8x8;
1038 case PIPE_FORMAT_ASTC_10x5_SRGB:
1039 return PIPE_FORMAT_ASTC_10x5;
1040 case PIPE_FORMAT_ASTC_10x6_SRGB:
1041 return PIPE_FORMAT_ASTC_10x6;
1042 case PIPE_FORMAT_ASTC_10x8_SRGB:
1043 return PIPE_FORMAT_ASTC_10x8;
1044 case PIPE_FORMAT_ASTC_10x10_SRGB:
1045 return PIPE_FORMAT_ASTC_10x10;
1046 case PIPE_FORMAT_ASTC_12x10_SRGB:
1047 return PIPE_FORMAT_ASTC_12x10;
1048 case PIPE_FORMAT_ASTC_12x12_SRGB:
1049 return PIPE_FORMAT_ASTC_12x12;
1050 default:
1051 return format;
1052 }
1053 }
1054
1055 /**
1056 * Given a depth-stencil format, return the corresponding stencil-only format.
1057 * For stencil-only formats, return the format unchanged.
1058 */
1059 static inline enum pipe_format
1060 util_format_stencil_only(enum pipe_format format)
1061 {
1062 switch (format) {
1063 /* mask out the depth component */
1064 case PIPE_FORMAT_Z24_UNORM_S8_UINT:
1065 return PIPE_FORMAT_X24S8_UINT;
1066 case PIPE_FORMAT_S8_UINT_Z24_UNORM:
1067 return PIPE_FORMAT_S8X24_UINT;
1068 case PIPE_FORMAT_Z32_FLOAT_S8X24_UINT:
1069 return PIPE_FORMAT_X32_S8X24_UINT;
1070
1071 /* stencil only formats */
1072 case PIPE_FORMAT_X24S8_UINT:
1073 case PIPE_FORMAT_S8X24_UINT:
1074 case PIPE_FORMAT_X32_S8X24_UINT:
1075 case PIPE_FORMAT_S8_UINT:
1076 return format;
1077
1078 default:
1079 assert(0);
1080 return PIPE_FORMAT_NONE;
1081 }
1082 }
1083
1084 /**
1085 * Converts PIPE_FORMAT_*I* to PIPE_FORMAT_*R*.
1086 * This is identity for non-intensity formats.
1087 */
1088 static inline enum pipe_format
1089 util_format_intensity_to_red(enum pipe_format format)
1090 {
1091 switch (format) {
1092 case PIPE_FORMAT_I8_UNORM:
1093 return PIPE_FORMAT_R8_UNORM;
1094 case PIPE_FORMAT_I8_SNORM:
1095 return PIPE_FORMAT_R8_SNORM;
1096 case PIPE_FORMAT_I16_UNORM:
1097 return PIPE_FORMAT_R16_UNORM;
1098 case PIPE_FORMAT_I16_SNORM:
1099 return PIPE_FORMAT_R16_SNORM;
1100 case PIPE_FORMAT_I16_FLOAT:
1101 return PIPE_FORMAT_R16_FLOAT;
1102 case PIPE_FORMAT_I32_FLOAT:
1103 return PIPE_FORMAT_R32_FLOAT;
1104 case PIPE_FORMAT_I8_UINT:
1105 return PIPE_FORMAT_R8_UINT;
1106 case PIPE_FORMAT_I8_SINT:
1107 return PIPE_FORMAT_R8_SINT;
1108 case PIPE_FORMAT_I16_UINT:
1109 return PIPE_FORMAT_R16_UINT;
1110 case PIPE_FORMAT_I16_SINT:
1111 return PIPE_FORMAT_R16_SINT;
1112 case PIPE_FORMAT_I32_UINT:
1113 return PIPE_FORMAT_R32_UINT;
1114 case PIPE_FORMAT_I32_SINT:
1115 return PIPE_FORMAT_R32_SINT;
1116 default:
1117 assert(!util_format_is_intensity(format));
1118 return format;
1119 }
1120 }
1121
1122 /**
1123 * Converts PIPE_FORMAT_*L* to PIPE_FORMAT_*R*.
1124 * This is identity for non-luminance formats.
1125 */
1126 static inline enum pipe_format
1127 util_format_luminance_to_red(enum pipe_format format)
1128 {
1129 switch (format) {
1130 case PIPE_FORMAT_L8_UNORM:
1131 return PIPE_FORMAT_R8_UNORM;
1132 case PIPE_FORMAT_L8_SNORM:
1133 return PIPE_FORMAT_R8_SNORM;
1134 case PIPE_FORMAT_L16_UNORM:
1135 return PIPE_FORMAT_R16_UNORM;
1136 case PIPE_FORMAT_L16_SNORM:
1137 return PIPE_FORMAT_R16_SNORM;
1138 case PIPE_FORMAT_L16_FLOAT:
1139 return PIPE_FORMAT_R16_FLOAT;
1140 case PIPE_FORMAT_L32_FLOAT:
1141 return PIPE_FORMAT_R32_FLOAT;
1142 case PIPE_FORMAT_L8_UINT:
1143 return PIPE_FORMAT_R8_UINT;
1144 case PIPE_FORMAT_L8_SINT:
1145 return PIPE_FORMAT_R8_SINT;
1146 case PIPE_FORMAT_L16_UINT:
1147 return PIPE_FORMAT_R16_UINT;
1148 case PIPE_FORMAT_L16_SINT:
1149 return PIPE_FORMAT_R16_SINT;
1150 case PIPE_FORMAT_L32_UINT:
1151 return PIPE_FORMAT_R32_UINT;
1152 case PIPE_FORMAT_L32_SINT:
1153 return PIPE_FORMAT_R32_SINT;
1154
1155 case PIPE_FORMAT_LATC1_UNORM:
1156 return PIPE_FORMAT_RGTC1_UNORM;
1157 case PIPE_FORMAT_LATC1_SNORM:
1158 return PIPE_FORMAT_RGTC1_SNORM;
1159
1160 case PIPE_FORMAT_L4A4_UNORM:
1161 return PIPE_FORMAT_R4A4_UNORM;
1162
1163 case PIPE_FORMAT_L8A8_UNORM:
1164 return PIPE_FORMAT_R8A8_UNORM;
1165 case PIPE_FORMAT_L8A8_SNORM:
1166 return PIPE_FORMAT_R8A8_SNORM;
1167 case PIPE_FORMAT_L16A16_UNORM:
1168 return PIPE_FORMAT_R16A16_UNORM;
1169 case PIPE_FORMAT_L16A16_SNORM:
1170 return PIPE_FORMAT_R16A16_SNORM;
1171 case PIPE_FORMAT_L16A16_FLOAT:
1172 return PIPE_FORMAT_R16A16_FLOAT;
1173 case PIPE_FORMAT_L32A32_FLOAT:
1174 return PIPE_FORMAT_R32A32_FLOAT;
1175 case PIPE_FORMAT_L8A8_UINT:
1176 return PIPE_FORMAT_R8A8_UINT;
1177 case PIPE_FORMAT_L8A8_SINT:
1178 return PIPE_FORMAT_R8A8_SINT;
1179 case PIPE_FORMAT_L16A16_UINT:
1180 return PIPE_FORMAT_R16A16_UINT;
1181 case PIPE_FORMAT_L16A16_SINT:
1182 return PIPE_FORMAT_R16A16_SINT;
1183 case PIPE_FORMAT_L32A32_UINT:
1184 return PIPE_FORMAT_R32A32_UINT;
1185 case PIPE_FORMAT_L32A32_SINT:
1186 return PIPE_FORMAT_R32A32_SINT;
1187
1188 /* We don't have compressed red-alpha variants for these. */
1189 case PIPE_FORMAT_LATC2_UNORM:
1190 case PIPE_FORMAT_LATC2_SNORM:
1191 return PIPE_FORMAT_NONE;
1192
1193 default:
1194 assert(!util_format_is_luminance(format) &&
1195 !util_format_is_luminance_alpha(format));
1196 return format;
1197 }
1198 }
1199
1200 /**
1201 * Return the number of components stored.
1202 * Formats with block size != 1x1 will always have 1 component (the block).
1203 */
1204 static inline unsigned
1205 util_format_get_nr_components(enum pipe_format format)
1206 {
1207 const struct util_format_description *desc = util_format_description(format);
1208 return desc->nr_channels;
1209 }
1210
1211 /**
1212 * Return the index of the first non-void channel
1213 * -1 if no non-void channels
1214 */
1215 static inline int
1216 util_format_get_first_non_void_channel(enum pipe_format format)
1217 {
1218 const struct util_format_description *desc = util_format_description(format);
1219 int i;
1220
1221 for (i = 0; i < 4; i++)
1222 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID)
1223 break;
1224
1225 if (i == 4)
1226 return -1;
1227
1228 return i;
1229 }
1230
1231 /*
1232 * Format access functions.
1233 */
1234
1235 void
1236 util_format_read_4f(enum pipe_format format,
1237 float *dst, unsigned dst_stride,
1238 const void *src, unsigned src_stride,
1239 unsigned x, unsigned y, unsigned w, unsigned h);
1240
1241 void
1242 util_format_write_4f(enum pipe_format format,
1243 const float *src, unsigned src_stride,
1244 void *dst, unsigned dst_stride,
1245 unsigned x, unsigned y, unsigned w, unsigned h);
1246
1247 void
1248 util_format_read_4ub(enum pipe_format format,
1249 uint8_t *dst, unsigned dst_stride,
1250 const void *src, unsigned src_stride,
1251 unsigned x, unsigned y, unsigned w, unsigned h);
1252
1253 void
1254 util_format_write_4ub(enum pipe_format format,
1255 const uint8_t *src, unsigned src_stride,
1256 void *dst, unsigned dst_stride,
1257 unsigned x, unsigned y, unsigned w, unsigned h);
1258
1259 void
1260 util_format_read_4ui(enum pipe_format format,
1261 unsigned *dst, unsigned dst_stride,
1262 const void *src, unsigned src_stride,
1263 unsigned x, unsigned y, unsigned w, unsigned h);
1264
1265 void
1266 util_format_write_4ui(enum pipe_format format,
1267 const unsigned int *src, unsigned src_stride,
1268 void *dst, unsigned dst_stride,
1269 unsigned x, unsigned y, unsigned w, unsigned h);
1270
1271 void
1272 util_format_read_4i(enum pipe_format format,
1273 int *dst, unsigned dst_stride,
1274 const void *src, unsigned src_stride,
1275 unsigned x, unsigned y, unsigned w, unsigned h);
1276
1277 void
1278 util_format_write_4i(enum pipe_format format,
1279 const int *src, unsigned src_stride,
1280 void *dst, unsigned dst_stride,
1281 unsigned x, unsigned y, unsigned w, unsigned h);
1282
1283 /*
1284 * Generic format conversion;
1285 */
1286
1287 boolean
1288 util_format_fits_8unorm(const struct util_format_description *format_desc);
1289
1290 boolean
1291 util_format_translate(enum pipe_format dst_format,
1292 void *dst, unsigned dst_stride,
1293 unsigned dst_x, unsigned dst_y,
1294 enum pipe_format src_format,
1295 const void *src, unsigned src_stride,
1296 unsigned src_x, unsigned src_y,
1297 unsigned width, unsigned height);
1298
1299 boolean
1300 util_format_translate_3d(enum pipe_format dst_format,
1301 void *dst, unsigned dst_stride,
1302 unsigned dst_slice_stride,
1303 unsigned dst_x, unsigned dst_y,
1304 unsigned dst_z,
1305 enum pipe_format src_format,
1306 const void *src, unsigned src_stride,
1307 unsigned src_slice_stride,
1308 unsigned src_x, unsigned src_y,
1309 unsigned src_z, unsigned width,
1310 unsigned height, unsigned depth);
1311
1312 /*
1313 * Swizzle operations.
1314 */
1315
1316 /* Compose two sets of swizzles.
1317 * If V is a 4D vector and the function parameters represent functions that
1318 * swizzle vector components, this holds:
1319 * swz2(swz1(V)) = dst(V)
1320 */
1321 void util_format_compose_swizzles(const unsigned char swz1[4],
1322 const unsigned char swz2[4],
1323 unsigned char dst[4]);
1324
1325 /* Apply the swizzle provided in \param swz (which is one of PIPE_SWIZZLE_x)
1326 * to \param src and store the result in \param dst.
1327 * \param is_integer determines the value written for PIPE_SWIZZLE_1.
1328 */
1329 void util_format_apply_color_swizzle(union pipe_color_union *dst,
1330 const union pipe_color_union *src,
1331 const unsigned char swz[4],
1332 const boolean is_integer);
1333
1334 void pipe_swizzle_4f(float *dst, const float *src,
1335 const unsigned char swz[4]);
1336
1337 void util_format_unswizzle_4f(float *dst, const float *src,
1338 const unsigned char swz[4]);
1339
1340 #ifdef __cplusplus
1341 } // extern "C" {
1342 #endif
1343
1344 #endif /* ! U_FORMAT_H */