Home | History | Annotate | Download | only in util

Lines Matching refs:packed

462    void *packed;
468 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
469 if (!packed) {
477 pipe_get_tile_raw(pipe, pt, x, y, w, h, packed, 0);
479 pipe_tile_raw_to_rgba(format, packed, w, h, p, dst_stride);
481 FREE(packed);
503 void *packed;
508 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
510 if (!packed)
515 /*z16_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
518 /*z32_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
522 /*s8z24_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
526 /*z24s8_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
529 /*z32f_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
532 /*z32f_s8x24_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
537 packed, util_format_get_stride(format, w),
541 pipe_put_tile_raw(pipe, pt, x, y, w, h, packed, 0);
543 FREE(packed);
554 void *packed;
559 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
561 if (!packed)
566 packed, util_format_get_stride(format, w),
569 pipe_put_tile_raw(pipe, pt, x, y, w, h, packed, 0);
571 FREE(packed);
582 void *packed;
587 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
589 if (!packed)
594 packed, util_format_get_stride(format, w),
597 pipe_put_tile_raw(pipe, pt, x, y, w, h, packed, 0);
599 FREE(packed);
877 void *packed;
883 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
884 if (!packed) {
892 pipe_get_tile_raw(pipe, pt, x, y, w, h, packed, 0);
894 pipe_tile_raw_to_unsigned(format, packed, w, h, p, dst_stride);
896 FREE(packed);
908 void *packed;
914 packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
915 if (!packed) {
923 pipe_get_tile_raw(pipe, pt, x, y, w, h, packed, 0);
925 pipe_tile_raw_to_signed(format, packed, w, h, p, dst_stride);
927 FREE(packed);