Lines Matching refs:PACK
49 #define PACK(SRC, OFFSET, BITS) (((SRC) & MAX_UINT(BITS)) << (OFFSET)) macro
77 d |= PACK(a, 0, 8); in pack_ubyte_a8b8g8r8_unorm()
78 d |= PACK(b, 8, 8); in pack_ubyte_a8b8g8r8_unorm()
79 d |= PACK(g, 16, 8); in pack_ubyte_a8b8g8r8_unorm()
80 d |= PACK(r, 24, 8); in pack_ubyte_a8b8g8r8_unorm()
102 d |= PACK(b, 8, 8); in pack_ubyte_x8b8g8r8_unorm()
103 d |= PACK(g, 16, 8); in pack_ubyte_x8b8g8r8_unorm()
104 d |= PACK(r, 24, 8); in pack_ubyte_x8b8g8r8_unorm()
129 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8a8_unorm()
130 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8a8_unorm()
131 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8a8_unorm()
132 d |= PACK(a, 24, 8); in pack_ubyte_r8g8b8a8_unorm()
154 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8x8_unorm()
155 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8x8_unorm()
156 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8x8_unorm()
181 d |= PACK(b, 0, 8); in pack_ubyte_b8g8r8a8_unorm()
182 d |= PACK(g, 8, 8); in pack_ubyte_b8g8r8a8_unorm()
183 d |= PACK(r, 16, 8); in pack_ubyte_b8g8r8a8_unorm()
184 d |= PACK(a, 24, 8); in pack_ubyte_b8g8r8a8_unorm()
206 d |= PACK(b, 0, 8); in pack_ubyte_b8g8r8x8_unorm()
207 d |= PACK(g, 8, 8); in pack_ubyte_b8g8r8x8_unorm()
208 d |= PACK(r, 16, 8); in pack_ubyte_b8g8r8x8_unorm()
233 d |= PACK(a, 0, 8); in pack_ubyte_a8r8g8b8_unorm()
234 d |= PACK(r, 8, 8); in pack_ubyte_a8r8g8b8_unorm()
235 d |= PACK(g, 16, 8); in pack_ubyte_a8r8g8b8_unorm()
236 d |= PACK(b, 24, 8); in pack_ubyte_a8r8g8b8_unorm()
258 d |= PACK(r, 8, 8); in pack_ubyte_x8r8g8b8_unorm()
259 d |= PACK(g, 16, 8); in pack_ubyte_x8r8g8b8_unorm()
260 d |= PACK(b, 24, 8); in pack_ubyte_x8r8g8b8_unorm()
277 d |= PACK(l, 0, 16); in pack_ubyte_l16a16_unorm()
278 d |= PACK(a, 16, 16); in pack_ubyte_l16a16_unorm()
295 d |= PACK(a, 0, 16); in pack_ubyte_a16l16_unorm()
296 d |= PACK(l, 16, 16); in pack_ubyte_a16l16_unorm()
317 d |= PACK(b, 0, 5); in pack_ubyte_b5g6r5_unorm()
318 d |= PACK(g, 5, 6); in pack_ubyte_b5g6r5_unorm()
319 d |= PACK(r, 11, 5); in pack_ubyte_b5g6r5_unorm()
340 d |= PACK(r, 0, 5); in pack_ubyte_r5g6b5_unorm()
341 d |= PACK(g, 5, 6); in pack_ubyte_r5g6b5_unorm()
342 d |= PACK(b, 11, 5); in pack_ubyte_r5g6b5_unorm()
367 d |= PACK(b, 0, 4); in pack_ubyte_b4g4r4a4_unorm()
368 d |= PACK(g, 4, 4); in pack_ubyte_b4g4r4a4_unorm()
369 d |= PACK(r, 8, 4); in pack_ubyte_b4g4r4a4_unorm()
370 d |= PACK(a, 12, 4); in pack_ubyte_b4g4r4a4_unorm()
392 d |= PACK(b, 0, 4); in pack_ubyte_b4g4r4x4_unorm()
393 d |= PACK(g, 4, 4); in pack_ubyte_b4g4r4x4_unorm()
394 d |= PACK(r, 8, 4); in pack_ubyte_b4g4r4x4_unorm()
419 d |= PACK(a, 0, 4); in pack_ubyte_a4r4g4b4_unorm()
420 d |= PACK(r, 4, 4); in pack_ubyte_a4r4g4b4_unorm()
421 d |= PACK(g, 8, 4); in pack_ubyte_a4r4g4b4_unorm()
422 d |= PACK(b, 12, 4); in pack_ubyte_a4r4g4b4_unorm()
447 d |= PACK(a, 0, 1); in pack_ubyte_a1b5g5r5_unorm()
448 d |= PACK(b, 1, 5); in pack_ubyte_a1b5g5r5_unorm()
449 d |= PACK(g, 6, 5); in pack_ubyte_a1b5g5r5_unorm()
450 d |= PACK(r, 11, 5); in pack_ubyte_a1b5g5r5_unorm()
472 d |= PACK(b, 1, 5); in pack_ubyte_x1b5g5r5_unorm()
473 d |= PACK(g, 6, 5); in pack_ubyte_x1b5g5r5_unorm()
474 d |= PACK(r, 11, 5); in pack_ubyte_x1b5g5r5_unorm()
499 d |= PACK(b, 0, 5); in pack_ubyte_b5g5r5a1_unorm()
500 d |= PACK(g, 5, 5); in pack_ubyte_b5g5r5a1_unorm()
501 d |= PACK(r, 10, 5); in pack_ubyte_b5g5r5a1_unorm()
502 d |= PACK(a, 15, 1); in pack_ubyte_b5g5r5a1_unorm()
524 d |= PACK(b, 0, 5); in pack_ubyte_b5g5r5x1_unorm()
525 d |= PACK(g, 5, 5); in pack_ubyte_b5g5r5x1_unorm()
526 d |= PACK(r, 10, 5); in pack_ubyte_b5g5r5x1_unorm()
551 d |= PACK(a, 0, 1); in pack_ubyte_a1r5g5b5_unorm()
552 d |= PACK(r, 1, 5); in pack_ubyte_a1r5g5b5_unorm()
553 d |= PACK(g, 6, 5); in pack_ubyte_a1r5g5b5_unorm()
554 d |= PACK(b, 11, 5); in pack_ubyte_a1r5g5b5_unorm()
571 d |= PACK(l, 0, 8); in pack_ubyte_l8a8_unorm()
572 d |= PACK(a, 8, 8); in pack_ubyte_l8a8_unorm()
589 d |= PACK(a, 0, 8); in pack_ubyte_a8l8_unorm()
590 d |= PACK(l, 8, 8); in pack_ubyte_a8l8_unorm()
607 d |= PACK(r, 0, 8); in pack_ubyte_r8g8_unorm()
608 d |= PACK(g, 8, 8); in pack_ubyte_r8g8_unorm()
625 d |= PACK(g, 0, 8); in pack_ubyte_g8r8_unorm()
626 d |= PACK(r, 8, 8); in pack_ubyte_g8r8_unorm()
643 d |= PACK(l, 0, 4); in pack_ubyte_l4a4_unorm()
644 d |= PACK(a, 4, 4); in pack_ubyte_l4a4_unorm()
665 d |= PACK(b, 0, 2); in pack_ubyte_b2g3r3_unorm()
666 d |= PACK(g, 2, 3); in pack_ubyte_b2g3r3_unorm()
667 d |= PACK(r, 5, 3); in pack_ubyte_b2g3r3_unorm()
684 d |= PACK(r, 0, 16); in pack_ubyte_r16g16_unorm()
685 d |= PACK(g, 16, 16); in pack_ubyte_r16g16_unorm()
702 d |= PACK(g, 0, 16); in pack_ubyte_g16r16_unorm()
703 d |= PACK(r, 16, 16); in pack_ubyte_g16r16_unorm()
728 d |= PACK(b, 0, 10); in pack_ubyte_b10g10r10a2_unorm()
729 d |= PACK(g, 10, 10); in pack_ubyte_b10g10r10a2_unorm()
730 d |= PACK(r, 20, 10); in pack_ubyte_b10g10r10a2_unorm()
731 d |= PACK(a, 30, 2); in pack_ubyte_b10g10r10a2_unorm()
753 d |= PACK(b, 0, 10); in pack_ubyte_b10g10r10x2_unorm()
754 d |= PACK(g, 10, 10); in pack_ubyte_b10g10r10x2_unorm()
755 d |= PACK(r, 20, 10); in pack_ubyte_b10g10r10x2_unorm()
780 d |= PACK(r, 0, 10); in pack_ubyte_r10g10b10a2_unorm()
781 d |= PACK(g, 10, 10); in pack_ubyte_r10g10b10a2_unorm()
782 d |= PACK(b, 20, 10); in pack_ubyte_r10g10b10a2_unorm()
783 d |= PACK(a, 30, 2); in pack_ubyte_r10g10b10a2_unorm()
805 d |= PACK(r, 0, 10); in pack_ubyte_r10g10b10x2_unorm()
806 d |= PACK(g, 10, 10); in pack_ubyte_r10g10b10x2_unorm()
807 d |= PACK(b, 20, 10); in pack_ubyte_r10g10b10x2_unorm()
828 d |= PACK(r, 0, 3); in pack_ubyte_r3g3b2_unorm()
829 d |= PACK(g, 3, 3); in pack_ubyte_r3g3b2_unorm()
830 d |= PACK(b, 6, 2); in pack_ubyte_r3g3b2_unorm()
855 d |= PACK(a, 0, 4); in pack_ubyte_a4b4g4r4_unorm()
856 d |= PACK(b, 4, 4); in pack_ubyte_a4b4g4r4_unorm()
857 d |= PACK(g, 8, 4); in pack_ubyte_a4b4g4r4_unorm()
858 d |= PACK(r, 12, 4); in pack_ubyte_a4b4g4r4_unorm()
883 d |= PACK(r, 0, 4); in pack_ubyte_r4g4b4a4_unorm()
884 d |= PACK(g, 4, 4); in pack_ubyte_r4g4b4a4_unorm()
885 d |= PACK(b, 8, 4); in pack_ubyte_r4g4b4a4_unorm()
886 d |= PACK(a, 12, 4); in pack_ubyte_r4g4b4a4_unorm()
911 d |= PACK(r, 0, 5); in pack_ubyte_r5g5b5a1_unorm()
912 d |= PACK(g, 5, 5); in pack_ubyte_r5g5b5a1_unorm()
913 d |= PACK(b, 10, 5); in pack_ubyte_r5g5b5a1_unorm()
914 d |= PACK(a, 15, 1); in pack_ubyte_r5g5b5a1_unorm()
939 d |= PACK(a, 0, 2); in pack_ubyte_a2b10g10r10_unorm()
940 d |= PACK(b, 2, 10); in pack_ubyte_a2b10g10r10_unorm()
941 d |= PACK(g, 12, 10); in pack_ubyte_a2b10g10r10_unorm()
942 d |= PACK(r, 22, 10); in pack_ubyte_a2b10g10r10_unorm()
967 d |= PACK(a, 0, 2); in pack_ubyte_a2r10g10b10_unorm()
968 d |= PACK(r, 2, 10); in pack_ubyte_a2r10g10b10_unorm()
969 d |= PACK(g, 12, 10); in pack_ubyte_a2r10g10b10_unorm()
970 d |= PACK(b, 22, 10); in pack_ubyte_a2r10g10b10_unorm()
1185 d |= PACK(a, 0, 8); in pack_ubyte_a8b8g8r8_snorm()
1186 d |= PACK(b, 8, 8); in pack_ubyte_a8b8g8r8_snorm()
1187 d |= PACK(g, 16, 8); in pack_ubyte_a8b8g8r8_snorm()
1188 d |= PACK(r, 24, 8); in pack_ubyte_a8b8g8r8_snorm()
1210 d |= PACK(b, 8, 8); in pack_ubyte_x8b8g8r8_snorm()
1211 d |= PACK(g, 16, 8); in pack_ubyte_x8b8g8r8_snorm()
1212 d |= PACK(r, 24, 8); in pack_ubyte_x8b8g8r8_snorm()
1237 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8a8_snorm()
1238 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8a8_snorm()
1239 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8a8_snorm()
1240 d |= PACK(a, 24, 8); in pack_ubyte_r8g8b8a8_snorm()
1262 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8x8_snorm()
1263 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8x8_snorm()
1264 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8x8_snorm()
1281 d |= PACK(r, 0, 16); in pack_ubyte_r16g16_snorm()
1282 d |= PACK(g, 16, 16); in pack_ubyte_r16g16_snorm()
1299 d |= PACK(g, 0, 16); in pack_ubyte_g16r16_snorm()
1300 d |= PACK(r, 16, 16); in pack_ubyte_g16r16_snorm()
1317 d |= PACK(r, 0, 8); in pack_ubyte_r8g8_snorm()
1318 d |= PACK(g, 8, 8); in pack_ubyte_r8g8_snorm()
1335 d |= PACK(g, 0, 8); in pack_ubyte_g8r8_snorm()
1336 d |= PACK(r, 8, 8); in pack_ubyte_g8r8_snorm()
1353 d |= PACK(l, 0, 8); in pack_ubyte_l8a8_snorm()
1354 d |= PACK(a, 8, 8); in pack_ubyte_l8a8_snorm()
1371 d |= PACK(a, 0, 8); in pack_ubyte_a8l8_snorm()
1372 d |= PACK(l, 8, 8); in pack_ubyte_a8l8_snorm()
1585 d |= PACK(a, 0, 8); in pack_ubyte_a8b8g8r8_srgb()
1586 d |= PACK(b, 8, 8); in pack_ubyte_a8b8g8r8_srgb()
1587 d |= PACK(g, 16, 8); in pack_ubyte_a8b8g8r8_srgb()
1588 d |= PACK(r, 24, 8); in pack_ubyte_a8b8g8r8_srgb()
1616 d |= PACK(b, 0, 8); in pack_ubyte_b8g8r8a8_srgb()
1617 d |= PACK(g, 8, 8); in pack_ubyte_b8g8r8a8_srgb()
1618 d |= PACK(r, 16, 8); in pack_ubyte_b8g8r8a8_srgb()
1619 d |= PACK(a, 24, 8); in pack_ubyte_b8g8r8a8_srgb()
1647 d |= PACK(a, 0, 8); in pack_ubyte_a8r8g8b8_srgb()
1648 d |= PACK(r, 8, 8); in pack_ubyte_a8r8g8b8_srgb()
1649 d |= PACK(g, 16, 8); in pack_ubyte_a8r8g8b8_srgb()
1650 d |= PACK(b, 24, 8); in pack_ubyte_a8r8g8b8_srgb()
1675 d |= PACK(b, 0, 8); in pack_ubyte_b8g8r8x8_srgb()
1676 d |= PACK(g, 8, 8); in pack_ubyte_b8g8r8x8_srgb()
1677 d |= PACK(r, 16, 8); in pack_ubyte_b8g8r8x8_srgb()
1702 d |= PACK(r, 8, 8); in pack_ubyte_x8r8g8b8_srgb()
1703 d |= PACK(g, 16, 8); in pack_ubyte_x8r8g8b8_srgb()
1704 d |= PACK(b, 24, 8); in pack_ubyte_x8r8g8b8_srgb()
1732 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8a8_srgb()
1733 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8a8_srgb()
1734 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8a8_srgb()
1735 d |= PACK(a, 24, 8); in pack_ubyte_r8g8b8a8_srgb()
1760 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8x8_srgb()
1761 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8x8_srgb()
1762 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8x8_srgb()
1787 d |= PACK(b, 8, 8); in pack_ubyte_x8b8g8r8_srgb()
1788 d |= PACK(g, 16, 8); in pack_ubyte_x8b8g8r8_srgb()
1789 d |= PACK(r, 24, 8); in pack_ubyte_x8b8g8r8_srgb()
1806 d |= PACK(l, 0, 8); in pack_ubyte_l8a8_srgb()
1807 d |= PACK(a, 8, 8); in pack_ubyte_l8a8_srgb()
1824 d |= PACK(a, 0, 8); in pack_ubyte_a8l8_srgb()
1825 d |= PACK(l, 8, 8); in pack_ubyte_a8l8_srgb()
2195 d |= PACK(a, 0, 8); in pack_ubyte_a8b8g8r8_uint()
2196 d |= PACK(b, 8, 8); in pack_ubyte_a8b8g8r8_uint()
2197 d |= PACK(g, 16, 8); in pack_ubyte_a8b8g8r8_uint()
2198 d |= PACK(r, 24, 8); in pack_ubyte_a8b8g8r8_uint()
2223 d |= PACK(a, 0, 8); in pack_ubyte_a8r8g8b8_uint()
2224 d |= PACK(r, 8, 8); in pack_ubyte_a8r8g8b8_uint()
2225 d |= PACK(g, 16, 8); in pack_ubyte_a8r8g8b8_uint()
2226 d |= PACK(b, 24, 8); in pack_ubyte_a8r8g8b8_uint()
2251 d |= PACK(r, 0, 8); in pack_ubyte_r8g8b8a8_uint()
2252 d |= PACK(g, 8, 8); in pack_ubyte_r8g8b8a8_uint()
2253 d |= PACK(b, 16, 8); in pack_ubyte_r8g8b8a8_uint()
2254 d |= PACK(a, 24, 8); in pack_ubyte_r8g8b8a8_uint()
2279 d |= PACK(b, 0, 8); in pack_ubyte_b8g8r8a8_uint()
2280 d |= PACK(g, 8, 8); in pack_ubyte_b8g8r8a8_uint()
2281 d |= PACK(r, 16, 8); in pack_ubyte_b8g8r8a8_uint()
2282 d |= PACK(a, 24, 8); in pack_ubyte_b8g8r8a8_uint()
2307 d |= PACK(b, 0, 10); in pack_ubyte_b10g10r10a2_uint()
2308 d |= PACK(g, 10, 10); in pack_ubyte_b10g10r10a2_uint()
2309 d |= PACK(r, 20, 10); in pack_ubyte_b10g10r10a2_uint()
2310 d |= PACK(a, 30, 2); in pack_ubyte_b10g10r10a2_uint()
2335 d |= PACK(r, 0, 10); in pack_ubyte_r10g10b10a2_uint()
2336 d |= PACK(g, 10, 10); in pack_ubyte_r10g10b10a2_uint()
2337 d |= PACK(b, 20, 10); in pack_ubyte_r10g10b10a2_uint()
2338 d |= PACK(a, 30, 2); in pack_ubyte_r10g10b10a2_uint()
2363 d |= PACK(a, 0, 2); in pack_ubyte_a2b10g10r10_uint()
2364 d |= PACK(b, 2, 10); in pack_ubyte_a2b10g10r10_uint()
2365 d |= PACK(g, 12, 10); in pack_ubyte_a2b10g10r10_uint()
2366 d |= PACK(r, 22, 10); in pack_ubyte_a2b10g10r10_uint()
2391 d |= PACK(a, 0, 2); in pack_ubyte_a2r10g10b10_uint()
2392 d |= PACK(r, 2, 10); in pack_ubyte_a2r10g10b10_uint()
2393 d |= PACK(g, 12, 10); in pack_ubyte_a2r10g10b10_uint()
2394 d |= PACK(b, 22, 10); in pack_ubyte_a2r10g10b10_uint()
2415 d |= PACK(b, 0, 5); in pack_ubyte_b5g6r5_uint()
2416 d |= PACK(g, 5, 6); in pack_ubyte_b5g6r5_uint()
2417 d |= PACK(r, 11, 5); in pack_ubyte_b5g6r5_uint()
2438 d |= PACK(r, 0, 5); in pack_ubyte_r5g6b5_uint()
2439 d |= PACK(g, 5, 6); in pack_ubyte_r5g6b5_uint()
2440 d |= PACK(b, 11, 5); in pack_ubyte_r5g6b5_uint()
2461 d |= PACK(b, 0, 2); in pack_ubyte_b2g3r3_uint()
2462 d |= PACK(g, 2, 3); in pack_ubyte_b2g3r3_uint()
2463 d |= PACK(r, 5, 3); in pack_ubyte_b2g3r3_uint()
2484 d |= PACK(r, 0, 3); in pack_ubyte_r3g3b2_uint()
2485 d |= PACK(g, 3, 3); in pack_ubyte_r3g3b2_uint()
2486 d |= PACK(b, 6, 2); in pack_ubyte_r3g3b2_uint()
2511 d |= PACK(a, 0, 4); in pack_ubyte_a4b4g4r4_uint()
2512 d |= PACK(b, 4, 4); in pack_ubyte_a4b4g4r4_uint()
2513 d |= PACK(g, 8, 4); in pack_ubyte_a4b4g4r4_uint()
2514 d |= PACK(r, 12, 4); in pack_ubyte_a4b4g4r4_uint()
2539 d |= PACK(r, 0, 4); in pack_ubyte_r4g4b4a4_uint()
2540 d |= PACK(g, 4, 4); in pack_ubyte_r4g4b4a4_uint()
2541 d |= PACK(b, 8, 4); in pack_ubyte_r4g4b4a4_uint()
2542 d |= PACK(a, 12, 4); in pack_ubyte_r4g4b4a4_uint()
2567 d |= PACK(b, 0, 4); in pack_ubyte_b4g4r4a4_uint()
2568 d |= PACK(g, 4, 4); in pack_ubyte_b4g4r4a4_uint()
2569 d |= PACK(r, 8, 4); in pack_ubyte_b4g4r4a4_uint()
2570 d |= PACK(a, 12, 4); in pack_ubyte_b4g4r4a4_uint()
2595 d |= PACK(a, 0, 4); in pack_ubyte_a4r4g4b4_uint()
2596 d |= PACK(r, 4, 4); in pack_ubyte_a4r4g4b4_uint()
2597 d |= PACK(g, 8, 4); in pack_ubyte_a4r4g4b4_uint()
2598 d |= PACK(b, 12, 4); in pack_ubyte_a4r4g4b4_uint()
2623 d |= PACK(a, 0, 1); in pack_ubyte_a1b5g5r5_uint()
2624 d |= PACK(b, 1, 5); in pack_ubyte_a1b5g5r5_uint()
2625 d |= PACK(g, 6, 5); in pack_ubyte_a1b5g5r5_uint()
2626 d |= PACK(r, 11, 5); in pack_ubyte_a1b5g5r5_uint()
2651 d |= PACK(b, 0, 5); in pack_ubyte_b5g5r5a1_uint()
2652 d |= PACK(g, 5, 5); in pack_ubyte_b5g5r5a1_uint()
2653 d |= PACK(r, 10, 5); in pack_ubyte_b5g5r5a1_uint()
2654 d |= PACK(a, 15, 1); in pack_ubyte_b5g5r5a1_uint()
2679 d |= PACK(a, 0, 1); in pack_ubyte_a1r5g5b5_uint()
2680 d |= PACK(r, 1, 5); in pack_ubyte_a1r5g5b5_uint()
2681 d |= PACK(g, 6, 5); in pack_ubyte_a1r5g5b5_uint()
2682 d |= PACK(b, 11, 5); in pack_ubyte_a1r5g5b5_uint()
2707 d |= PACK(r, 0, 5); in pack_ubyte_r5g5b5a1_uint()
2708 d |= PACK(g, 5, 5); in pack_ubyte_r5g5b5a1_uint()
2709 d |= PACK(b, 10, 5); in pack_ubyte_r5g5b5a1_uint()
2710 d |= PACK(a, 15, 1); in pack_ubyte_r5g5b5a1_uint()
3684 d |= PACK(a, 0, 8); in pack_uint_a8b8g8r8_uint()
3685 d |= PACK(b, 8, 8); in pack_uint_a8b8g8r8_uint()
3686 d |= PACK(g, 16, 8); in pack_uint_a8b8g8r8_uint()
3687 d |= PACK(r, 24, 8); in pack_uint_a8b8g8r8_uint()
3712 d |= PACK(a, 0, 8); in pack_uint_a8r8g8b8_uint()
3713 d |= PACK(r, 8, 8); in pack_uint_a8r8g8b8_uint()
3714 d |= PACK(g, 16, 8); in pack_uint_a8r8g8b8_uint()
3715 d |= PACK(b, 24, 8); in pack_uint_a8r8g8b8_uint()
3740 d |= PACK(r, 0, 8); in pack_uint_r8g8b8a8_uint()
3741 d |= PACK(g, 8, 8); in pack_uint_r8g8b8a8_uint()
3742 d |= PACK(b, 16, 8); in pack_uint_r8g8b8a8_uint()
3743 d |= PACK(a, 24, 8); in pack_uint_r8g8b8a8_uint()
3768 d |= PACK(b, 0, 8); in pack_uint_b8g8r8a8_uint()
3769 d |= PACK(g, 8, 8); in pack_uint_b8g8r8a8_uint()
3770 d |= PACK(r, 16, 8); in pack_uint_b8g8r8a8_uint()
3771 d |= PACK(a, 24, 8); in pack_uint_b8g8r8a8_uint()
3796 d |= PACK(b, 0, 10); in pack_uint_b10g10r10a2_uint()
3797 d |= PACK(g, 10, 10); in pack_uint_b10g10r10a2_uint()
3798 d |= PACK(r, 20, 10); in pack_uint_b10g10r10a2_uint()
3799 d |= PACK(a, 30, 2); in pack_uint_b10g10r10a2_uint()
3824 d |= PACK(r, 0, 10); in pack_uint_r10g10b10a2_uint()
3825 d |= PACK(g, 10, 10); in pack_uint_r10g10b10a2_uint()
3826 d |= PACK(b, 20, 10); in pack_uint_r10g10b10a2_uint()
3827 d |= PACK(a, 30, 2); in pack_uint_r10g10b10a2_uint()
3852 d |= PACK(a, 0, 2); in pack_uint_a2b10g10r10_uint()
3853 d |= PACK(b, 2, 10); in pack_uint_a2b10g10r10_uint()
3854 d |= PACK(g, 12, 10); in pack_uint_a2b10g10r10_uint()
3855 d |= PACK(r, 22, 10); in pack_uint_a2b10g10r10_uint()
3880 d |= PACK(a, 0, 2); in pack_uint_a2r10g10b10_uint()
3881 d |= PACK(r, 2, 10); in pack_uint_a2r10g10b10_uint()
3882 d |= PACK(g, 12, 10); in pack_uint_a2r10g10b10_uint()
3883 d |= PACK(b, 22, 10); in pack_uint_a2r10g10b10_uint()
3904 d |= PACK(b, 0, 5); in pack_uint_b5g6r5_uint()
3905 d |= PACK(g, 5, 6); in pack_uint_b5g6r5_uint()
3906 d |= PACK(r, 11, 5); in pack_uint_b5g6r5_uint()
3927 d |= PACK(r, 0, 5); in pack_uint_r5g6b5_uint()
3928 d |= PACK(g, 5, 6); in pack_uint_r5g6b5_uint()
3929 d |= PACK(b, 11, 5); in pack_uint_r5g6b5_uint()
3950 d |= PACK(b, 0, 2); in pack_uint_b2g3r3_uint()
3951 d |= PACK(g, 2, 3); in pack_uint_b2g3r3_uint()
3952 d |= PACK(r, 5, 3); in pack_uint_b2g3r3_uint()
3973 d |= PACK(r, 0, 3); in pack_uint_r3g3b2_uint()
3974 d |= PACK(g, 3, 3); in pack_uint_r3g3b2_uint()
3975 d |= PACK(b, 6, 2); in pack_uint_r3g3b2_uint()
4000 d |= PACK(a, 0, 4); in pack_uint_a4b4g4r4_uint()
4001 d |= PACK(b, 4, 4); in pack_uint_a4b4g4r4_uint()
4002 d |= PACK(g, 8, 4); in pack_uint_a4b4g4r4_uint()
4003 d |= PACK(r, 12, 4); in pack_uint_a4b4g4r4_uint()
4028 d |= PACK(r, 0, 4); in pack_uint_r4g4b4a4_uint()
4029 d |= PACK(g, 4, 4); in pack_uint_r4g4b4a4_uint()
4030 d |= PACK(b, 8, 4); in pack_uint_r4g4b4a4_uint()
4031 d |= PACK(a, 12, 4); in pack_uint_r4g4b4a4_uint()
4056 d |= PACK(b, 0, 4); in pack_uint_b4g4r4a4_uint()
4057 d |= PACK(g, 4, 4); in pack_uint_b4g4r4a4_uint()
4058 d |= PACK(r, 8, 4); in pack_uint_b4g4r4a4_uint()
4059 d |= PACK(a, 12, 4); in pack_uint_b4g4r4a4_uint()
4084 d |= PACK(a, 0, 4); in pack_uint_a4r4g4b4_uint()
4085 d |= PACK(r, 4, 4); in pack_uint_a4r4g4b4_uint()
4086 d |= PACK(g, 8, 4); in pack_uint_a4r4g4b4_uint()
4087 d |= PACK(b, 12, 4); in pack_uint_a4r4g4b4_uint()
4112 d |= PACK(a, 0, 1); in pack_uint_a1b5g5r5_uint()
4113 d |= PACK(b, 1, 5); in pack_uint_a1b5g5r5_uint()
4114 d |= PACK(g, 6, 5); in pack_uint_a1b5g5r5_uint()
4115 d |= PACK(r, 11, 5); in pack_uint_a1b5g5r5_uint()
4140 d |= PACK(b, 0, 5); in pack_uint_b5g5r5a1_uint()
4141 d |= PACK(g, 5, 5); in pack_uint_b5g5r5a1_uint()
4142 d |= PACK(r, 10, 5); in pack_uint_b5g5r5a1_uint()
4143 d |= PACK(a, 15, 1); in pack_uint_b5g5r5a1_uint()
4168 d |= PACK(a, 0, 1); in pack_uint_a1r5g5b5_uint()
4169 d |= PACK(r, 1, 5); in pack_uint_a1r5g5b5_uint()
4170 d |= PACK(g, 6, 5); in pack_uint_a1r5g5b5_uint()
4171 d |= PACK(b, 11, 5); in pack_uint_a1r5g5b5_uint()
4196 d |= PACK(r, 0, 5); in pack_uint_r5g5b5a1_uint()
4197 d |= PACK(g, 5, 5); in pack_uint_r5g5b5a1_uint()
4198 d |= PACK(b, 10, 5); in pack_uint_r5g5b5a1_uint()
4199 d |= PACK(a, 15, 1); in pack_uint_r5g5b5a1_uint()
5151 d |= PACK(a, 0, 8); in pack_float_a8b8g8r8_unorm()
5152 d |= PACK(b, 8, 8); in pack_float_a8b8g8r8_unorm()
5153 d |= PACK(g, 16, 8); in pack_float_a8b8g8r8_unorm()
5154 d |= PACK(r, 24, 8); in pack_float_a8b8g8r8_unorm()
5176 d |= PACK(b, 8, 8); in pack_float_x8b8g8r8_unorm()
5177 d |= PACK(g, 16, 8); in pack_float_x8b8g8r8_unorm()
5178 d |= PACK(r, 24, 8); in pack_float_x8b8g8r8_unorm()
5203 d |= PACK(r, 0, 8); in pack_float_r8g8b8a8_unorm()
5204 d |= PACK(g, 8, 8); in pack_float_r8g8b8a8_unorm()
5205 d |= PACK(b, 16, 8); in pack_float_r8g8b8a8_unorm()
5206 d |= PACK(a, 24, 8); in pack_float_r8g8b8a8_unorm()
5228 d |= PACK(r, 0, 8); in pack_float_r8g8b8x8_unorm()
5229 d |= PACK(g, 8, 8); in pack_float_r8g8b8x8_unorm()
5230 d |= PACK(b, 16, 8); in pack_float_r8g8b8x8_unorm()
5255 d |= PACK(b, 0, 8); in pack_float_b8g8r8a8_unorm()
5256 d |= PACK(g, 8, 8); in pack_float_b8g8r8a8_unorm()
5257 d |= PACK(r, 16, 8); in pack_float_b8g8r8a8_unorm()
5258 d |= PACK(a, 24, 8); in pack_float_b8g8r8a8_unorm()
5280 d |= PACK(b, 0, 8); in pack_float_b8g8r8x8_unorm()
5281 d |= PACK(g, 8, 8); in pack_float_b8g8r8x8_unorm()
5282 d |= PACK(r, 16, 8); in pack_float_b8g8r8x8_unorm()
5307 d |= PACK(a, 0, 8); in pack_float_a8r8g8b8_unorm()
5308 d |= PACK(r, 8, 8); in pack_float_a8r8g8b8_unorm()
5309 d |= PACK(g, 16, 8); in pack_float_a8r8g8b8_unorm()
5310 d |= PACK(b, 24, 8); in pack_float_a8r8g8b8_unorm()
5332 d |= PACK(r, 8, 8); in pack_float_x8r8g8b8_unorm()
5333 d |= PACK(g, 16, 8); in pack_float_x8r8g8b8_unorm()
5334 d |= PACK(b, 24, 8); in pack_float_x8r8g8b8_unorm()
5351 d |= PACK(l, 0, 16); in pack_float_l16a16_unorm()
5352 d |= PACK(a, 16, 16); in pack_float_l16a16_unorm()
5369 d |= PACK(a, 0, 16); in pack_float_a16l16_unorm()
5370 d |= PACK(l, 16, 16); in pack_float_a16l16_unorm()
5391 d |= PACK(b, 0, 5); in pack_float_b5g6r5_unorm()
5392 d |= PACK(g, 5, 6); in pack_float_b5g6r5_unorm()
5393 d |= PACK(r, 11, 5); in pack_float_b5g6r5_unorm()
5414 d |= PACK(r, 0, 5); in pack_float_r5g6b5_unorm()
5415 d |= PACK(g, 5, 6); in pack_float_r5g6b5_unorm()
5416 d |= PACK(b, 11, 5); in pack_float_r5g6b5_unorm()
5441 d |= PACK(b, 0, 4); in pack_float_b4g4r4a4_unorm()
5442 d |= PACK(g, 4, 4); in pack_float_b4g4r4a4_unorm()
5443 d |= PACK(r, 8, 4); in pack_float_b4g4r4a4_unorm()
5444 d |= PACK(a, 12, 4); in pack_float_b4g4r4a4_unorm()
5466 d |= PACK(b, 0, 4); in pack_float_b4g4r4x4_unorm()
5467 d |= PACK(g, 4, 4); in pack_float_b4g4r4x4_unorm()
5468 d |= PACK(r, 8, 4); in pack_float_b4g4r4x4_unorm()
5493 d |= PACK(a, 0, 4); in pack_float_a4r4g4b4_unorm()
5494 d |= PACK(r, 4, 4); in pack_float_a4r4g4b4_unorm()
5495 d |= PACK(g, 8, 4); in pack_float_a4r4g4b4_unorm()
5496 d |= PACK(b, 12, 4); in pack_float_a4r4g4b4_unorm()
5521 d |= PACK(a, 0, 1); in pack_float_a1b5g5r5_unorm()
5522 d |= PACK(b, 1, 5); in pack_float_a1b5g5r5_unorm()
5523 d |= PACK(g, 6, 5); in pack_float_a1b5g5r5_unorm()
5524 d |= PACK(r, 11, 5); in pack_float_a1b5g5r5_unorm()
5546 d |= PACK(b, 1, 5); in pack_float_x1b5g5r5_unorm()
5547 d |= PACK(g, 6, 5); in pack_float_x1b5g5r5_unorm()
5548 d |= PACK(r, 11, 5); in pack_float_x1b5g5r5_unorm()
5573 d |= PACK(b, 0, 5); in pack_float_b5g5r5a1_unorm()
5574 d |= PACK(g, 5, 5); in pack_float_b5g5r5a1_unorm()
5575 d |= PACK(r, 10, 5); in pack_float_b5g5r5a1_unorm()
5576 d |= PACK(a, 15, 1); in pack_float_b5g5r5a1_unorm()
5598 d |= PACK(b, 0, 5); in pack_float_b5g5r5x1_unorm()
5599 d |= PACK(g, 5, 5); in pack_float_b5g5r5x1_unorm()
5600 d |= PACK(r, 10, 5); in pack_float_b5g5r5x1_unorm()
5625 d |= PACK(a, 0, 1); in pack_float_a1r5g5b5_unorm()
5626 d |= PACK(r, 1, 5); in pack_float_a1r5g5b5_unorm()
5627 d |= PACK(g, 6, 5); in pack_float_a1r5g5b5_unorm()
5628 d |= PACK(b, 11, 5); in pack_float_a1r5g5b5_unorm()
5645 d |= PACK(l, 0, 8); in pack_float_l8a8_unorm()
5646 d |= PACK(a, 8, 8); in pack_float_l8a8_unorm()
5663 d |= PACK(a, 0, 8); in pack_float_a8l8_unorm()
5664 d |= PACK(l, 8, 8); in pack_float_a8l8_unorm()
5681 d |= PACK(r, 0, 8); in pack_float_r8g8_unorm()
5682 d |= PACK(g, 8, 8); in pack_float_r8g8_unorm()
5699 d |= PACK(g, 0, 8); in pack_float_g8r8_unorm()
5700 d |= PACK(r, 8, 8); in pack_float_g8r8_unorm()
5717 d |= PACK(l, 0, 4); in pack_float_l4a4_unorm()
5718 d |= PACK(a, 4, 4); in pack_float_l4a4_unorm()
5739 d |= PACK(b, 0, 2); in pack_float_b2g3r3_unorm()
5740 d |= PACK(g, 2, 3); in pack_float_b2g3r3_unorm()
5741 d |= PACK(r, 5, 3); in pack_float_b2g3r3_unorm()
5758 d |= PACK(r, 0, 16); in pack_float_r16g16_unorm()
5759 d |= PACK(g, 16, 16); in pack_float_r16g16_unorm()
5776 d |= PACK(g, 0, 16); in pack_float_g16r16_unorm()
5777 d |= PACK(r, 16, 16); in pack_float_g16r16_unorm()
5802 d |= PACK(b, 0, 10); in pack_float_b10g10r10a2_unorm()
5803 d |= PACK(g, 10, 10); in pack_float_b10g10r10a2_unorm()
5804 d |= PACK(r, 20, 10); in pack_float_b10g10r10a2_unorm()
5805 d |= PACK(a, 30, 2); in pack_float_b10g10r10a2_unorm()
5827 d |= PACK(b, 0, 10); in pack_float_b10g10r10x2_unorm()
5828 d |= PACK(g, 10, 10); in pack_float_b10g10r10x2_unorm()
5829 d |= PACK(r, 20, 10); in pack_float_b10g10r10x2_unorm()
5854 d |= PACK(r, 0, 10); in pack_float_r10g10b10a2_unorm()
5855 d |= PACK(g, 10, 10); in pack_float_r10g10b10a2_unorm()
5856 d |= PACK(b, 20, 10); in pack_float_r10g10b10a2_unorm()
5857 d |= PACK(a, 30, 2); in pack_float_r10g10b10a2_unorm()
5879 d |= PACK(r, 0, 10); in pack_float_r10g10b10x2_unorm()
5880 d |= PACK(g, 10, 10); in pack_float_r10g10b10x2_unorm()
5881 d |= PACK(b, 20, 10); in pack_float_r10g10b10x2_unorm()
5902 d |= PACK(r, 0, 3); in pack_float_r3g3b2_unorm()
5903 d |= PACK(g, 3, 3); in pack_float_r3g3b2_unorm()
5904 d |= PACK(b, 6, 2); in pack_float_r3g3b2_unorm()
5929 d |= PACK(a, 0, 4); in pack_float_a4b4g4r4_unorm()
5930 d |= PACK(b, 4, 4); in pack_float_a4b4g4r4_unorm()
5931 d |= PACK(g, 8, 4); in pack_float_a4b4g4r4_unorm()
5932 d |= PACK(r, 12, 4); in pack_float_a4b4g4r4_unorm()
5957 d |= PACK(r, 0, 4); in pack_float_r4g4b4a4_unorm()
5958 d |= PACK(g, 4, 4); in pack_float_r4g4b4a4_unorm()
5959 d |= PACK(b, 8, 4); in pack_float_r4g4b4a4_unorm()
5960 d |= PACK(a, 12, 4); in pack_float_r4g4b4a4_unorm()
5985 d |= PACK(r, 0, 5); in pack_float_r5g5b5a1_unorm()
5986 d |= PACK(g, 5, 5); in pack_float_r5g5b5a1_unorm()
5987 d |= PACK(b, 10, 5); in pack_float_r5g5b5a1_unorm()
5988 d |= PACK(a, 15, 1); in pack_float_r5g5b5a1_unorm()
6013 d |= PACK(a, 0, 2); in pack_float_a2b10g10r10_unorm()
6014 d |= PACK(b, 2, 10); in pack_float_a2b10g10r10_unorm()
6015 d |= PACK(g, 12, 10); in pack_float_a2b10g10r10_unorm()
6016 d |= PACK(r, 22, 10); in pack_float_a2b10g10r10_unorm()
6041 d |= PACK(a, 0, 2); in pack_float_a2r10g10b10_unorm()
6042 d |= PACK(r, 2, 10); in pack_float_a2r10g10b10_unorm()
6043 d |= PACK(g, 12, 10); in pack_float_a2r10g10b10_unorm()
6044 d |= PACK(b, 22, 10); in pack_float_a2r10g10b10_unorm()
6259 d |= PACK(a, 0, 8); in pack_float_a8b8g8r8_snorm()
6260 d |= PACK(b, 8, 8); in pack_float_a8b8g8r8_snorm()
6261 d |= PACK(g, 16, 8); in pack_float_a8b8g8r8_snorm()
6262 d |= PACK(r, 24, 8); in pack_float_a8b8g8r8_snorm()
6284 d |= PACK(b, 8, 8); in pack_float_x8b8g8r8_snorm()
6285 d |= PACK(g, 16, 8); in pack_float_x8b8g8r8_snorm()
6286 d |= PACK(r, 24, 8); in pack_float_x8b8g8r8_snorm()
6311 d |= PACK(r, 0, 8); in pack_float_r8g8b8a8_snorm()
6312 d |= PACK(g, 8, 8); in pack_float_r8g8b8a8_snorm()
6313 d |= PACK(b, 16, 8); in pack_float_r8g8b8a8_snorm()
6314 d |= PACK(a, 24, 8); in pack_float_r8g8b8a8_snorm()
6336 d |= PACK(r, 0, 8); in pack_float_r8g8b8x8_snorm()
6337 d |= PACK(g, 8, 8); in pack_float_r8g8b8x8_snorm()
6338 d |= PACK(b, 16, 8); in pack_float_r8g8b8x8_snorm()
6355 d |= PACK(r, 0, 16); in pack_float_r16g16_snorm()
6356 d |= PACK(g, 16, 16); in pack_float_r16g16_snorm()
6373 d |= PACK(g, 0, 16); in pack_float_g16r16_snorm()
6374 d |= PACK(r, 16, 16); in pack_float_g16r16_snorm()
6391 d |= PACK(r, 0, 8); in pack_float_r8g8_snorm()
6392 d |= PACK(g, 8, 8); in pack_float_r8g8_snorm()
6409 d |= PACK(g, 0, 8); in pack_float_g8r8_snorm()
6410 d |= PACK(r, 8, 8); in pack_float_g8r8_snorm()
6427 d |= PACK(l, 0, 8); in pack_float_l8a8_snorm()
6428 d |= PACK(a, 8, 8); in pack_float_l8a8_snorm()
6445 d |= PACK(a, 0, 8); in pack_float_a8l8_snorm()
6446 d |= PACK(l, 8, 8); in pack_float_a8l8_snorm()
6659 d |= PACK(a, 0, 8); in pack_float_a8b8g8r8_srgb()
6660 d |= PACK(b, 8, 8); in pack_float_a8b8g8r8_srgb()
6661 d |= PACK(g, 16, 8); in pack_float_a8b8g8r8_srgb()
6662 d |= PACK(r, 24, 8); in pack_float_a8b8g8r8_srgb()
6690 d |= PACK(b, 0, 8); in pack_float_b8g8r8a8_srgb()
6691 d |= PACK(g, 8, 8); in pack_float_b8g8r8a8_srgb()
6692 d |= PACK(r, 16, 8); in pack_float_b8g8r8a8_srgb()
6693 d |= PACK(a, 24, 8); in pack_float_b8g8r8a8_srgb()
6721 d |= PACK(a, 0, 8); in pack_float_a8r8g8b8_srgb()
6722 d |= PACK(r, 8, 8); in pack_float_a8r8g8b8_srgb()
6723 d |= PACK(g, 16, 8); in pack_float_a8r8g8b8_srgb()
6724 d |= PACK(b, 24, 8); in pack_float_a8r8g8b8_srgb()
6749 d |= PACK(b, 0, 8); in pack_float_b8g8r8x8_srgb()
6750 d |= PACK(g, 8, 8); in pack_float_b8g8r8x8_srgb()
6751 d |= PACK(r, 16, 8); in pack_float_b8g8r8x8_srgb()
6776 d |= PACK(r, 8, 8); in pack_float_x8r8g8b8_srgb()
6777 d |= PACK(g, 16, 8); in pack_float_x8r8g8b8_srgb()
6778 d |= PACK(b, 24, 8); in pack_float_x8r8g8b8_srgb()
6806 d |= PACK(r, 0, 8); in pack_float_r8g8b8a8_srgb()
6807 d |= PACK(g, 8, 8); in pack_float_r8g8b8a8_srgb()
6808 d |= PACK(b, 16, 8); in pack_float_r8g8b8a8_srgb()
6809 d |= PACK(a, 24, 8); in pack_float_r8g8b8a8_srgb()
6834 d |= PACK(r, 0, 8); in pack_float_r8g8b8x8_srgb()
6835 d |= PACK(g, 8, 8); in pack_float_r8g8b8x8_srgb()
6836 d |= PACK(b, 16, 8); in pack_float_r8g8b8x8_srgb()
6861 d |= PACK(b, 8, 8); in pack_float_x8b8g8r8_srgb()
6862 d |= PACK(g, 16, 8); in pack_float_x8b8g8r8_srgb()
6863 d |= PACK(r, 24, 8); in pack_float_x8b8g8r8_srgb()
6880 d |= PACK(l, 0, 8); in pack_float_l8a8_srgb()
6881 d |= PACK(a, 8, 8); in pack_float_l8a8_srgb()
6898 d |= PACK(a, 0, 8); in pack_float_a8l8_srgb()
6899 d |= PACK(l, 8, 8); in pack_float_a8l8_srgb()