u_tile.c revision 90671fcdda52a83e2bbba581e985d25c6bff961e
1/**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 * RGBA/float tile get/put functions.
30 * Usable both by drivers and state trackers.
31 */
32
33
34#include "pipe/p_defines.h"
35#include "util/u_inlines.h"
36
37#include "util/u_format.h"
38#include "util/u_math.h"
39#include "util/u_memory.h"
40#include "util/u_rect.h"
41#include "util/u_tile.h"
42
43
44/**
45 * Move raw block of pixels from transfer object to user memory.
46 */
47void
48pipe_get_tile_raw(struct pipe_context *pipe,
49                  struct pipe_transfer *pt,
50                  uint x, uint y, uint w, uint h,
51                  void *dst, int dst_stride)
52{
53   const void *src;
54
55   if (dst_stride == 0)
56      dst_stride = util_format_get_stride(pt->resource->format, w);
57
58   if (u_clip_tile(x, y, &w, &h, &pt->box))
59      return;
60
61   src = pipe->transfer_map(pipe, pt);
62   assert(src);
63   if(!src)
64      return;
65
66   util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y);
67
68   pipe->transfer_unmap(pipe, pt);
69}
70
71
72/**
73 * Move raw block of pixels from user memory to transfer object.
74 */
75void
76pipe_put_tile_raw(struct pipe_context *pipe,
77                  struct pipe_transfer *pt,
78                  uint x, uint y, uint w, uint h,
79                  const void *src, int src_stride)
80{
81   void *dst;
82   enum pipe_format format = pt->resource->format;
83
84   if (src_stride == 0)
85      src_stride = util_format_get_stride(format, w);
86
87   if (u_clip_tile(x, y, &w, &h, &pt->box))
88      return;
89
90   dst = pipe->transfer_map(pipe, pt);
91   assert(dst);
92   if(!dst)
93      return;
94
95   util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0);
96
97   pipe->transfer_unmap(pipe, pt);
98}
99
100
101
102
103/** Convert short in [-32768,32767] to GLfloat in [-1.0,1.0] */
104#define SHORT_TO_FLOAT(S)   ((2.0F * (S) + 1.0F) * (1.0F/65535.0F))
105
106#define UNCLAMPED_FLOAT_TO_SHORT(us, f)  \
107   us = ( (short) ( CLAMP((f), -1.0, 1.0) * 32767.0F) )
108
109
110
111/*** PIPE_FORMAT_Z16_UNORM ***/
112
113/**
114 * Return each Z value as four floats in [0,1].
115 */
116static void
117z16_get_tile_rgba(const ushort *src,
118                  unsigned w, unsigned h,
119                  float *p,
120                  unsigned dst_stride)
121{
122   const float scale = 1.0f / 65535.0f;
123   unsigned i, j;
124
125   for (i = 0; i < h; i++) {
126      float *pRow = p;
127      for (j = 0; j < w; j++, pRow += 4) {
128         pRow[0] =
129         pRow[1] =
130         pRow[2] =
131         pRow[3] = *src++ * scale;
132      }
133      p += dst_stride;
134   }
135}
136
137
138
139
140/*** PIPE_FORMAT_Z32_UNORM ***/
141
142/**
143 * Return each Z value as four floats in [0,1].
144 */
145static void
146z32_get_tile_rgba(const unsigned *src,
147                  unsigned w, unsigned h,
148                  float *p,
149                  unsigned dst_stride)
150{
151   const double scale = 1.0 / (double) 0xffffffff;
152   unsigned i, j;
153
154   for (i = 0; i < h; i++) {
155      float *pRow = p;
156      for (j = 0; j < w; j++, pRow += 4) {
157         pRow[0] =
158         pRow[1] =
159         pRow[2] =
160         pRow[3] = (float) (*src++ * scale);
161      }
162      p += dst_stride;
163   }
164}
165
166
167/*** PIPE_FORMAT_Z24_UNORM_S8_USCALED ***/
168
169/**
170 * Return Z component as four float in [0,1].  Stencil part ignored.
171 */
172static void
173s8z24_get_tile_rgba(const unsigned *src,
174                    unsigned w, unsigned h,
175                    float *p,
176                    unsigned dst_stride)
177{
178   const double scale = 1.0 / ((1 << 24) - 1);
179   unsigned i, j;
180
181   for (i = 0; i < h; i++) {
182      float *pRow = p;
183      for (j = 0; j < w; j++, pRow += 4) {
184         pRow[0] =
185         pRow[1] =
186         pRow[2] =
187         pRow[3] = (float) (scale * (*src++ & 0xffffff));
188      }
189      p += dst_stride;
190   }
191}
192
193
194/*** PIPE_FORMAT_S8_USCALED_Z24_UNORM ***/
195
196/**
197 * Return Z component as four float in [0,1].  Stencil part ignored.
198 */
199static void
200z24s8_get_tile_rgba(const unsigned *src,
201                    unsigned w, unsigned h,
202                    float *p,
203                    unsigned dst_stride)
204{
205   const double scale = 1.0 / ((1 << 24) - 1);
206   unsigned i, j;
207
208   for (i = 0; i < h; i++) {
209      float *pRow = p;
210      for (j = 0; j < w; j++, pRow += 4) {
211         pRow[0] =
212         pRow[1] =
213         pRow[2] =
214         pRow[3] = (float) (scale * (*src++ >> 8));
215      }
216      p += dst_stride;
217   }
218}
219
220/*** PIPE_FORMAT_S8X24_USCALED ***/
221
222/**
223 * Return S component as four uint32_t in [0..255].  Z part ignored.
224 */
225static void
226s8x24_get_tile_rgba(const unsigned *src,
227                    unsigned w, unsigned h,
228                    float *p,
229                    unsigned dst_stride)
230{
231   unsigned i, j;
232
233   for (i = 0; i < h; i++) {
234      float *pRow = p;
235
236      for (j = 0; j < w; j++, pRow += 4) {
237         pRow[0] =
238         pRow[1] =
239         pRow[2] =
240         pRow[3] = (float)((*src++ >> 24) & 0xff);
241      }
242
243      p += dst_stride;
244   }
245}
246
247/*** PIPE_FORMAT_X24S8_USCALED ***/
248
249/**
250 * Return S component as four uint32_t in [0..255].  Z part ignored.
251 */
252static void
253x24s8_get_tile_rgba(const unsigned *src,
254                    unsigned w, unsigned h,
255                    float *p,
256                    unsigned dst_stride)
257{
258   unsigned i, j;
259
260   for (i = 0; i < h; i++) {
261      float *pRow = p;
262      for (j = 0; j < w; j++, pRow += 4) {
263         pRow[0] =
264         pRow[1] =
265         pRow[2] =
266         pRow[3] = (float)(*src++ & 0xff);
267      }
268      p += dst_stride;
269   }
270}
271
272
273/**
274 * Return S component as four uint32_t in [0..255].  Z part ignored.
275 */
276static void
277s8_get_tile_rgba(const unsigned char *src,
278		 unsigned w, unsigned h,
279		 float *p,
280		 unsigned dst_stride)
281{
282   unsigned i, j;
283
284   for (i = 0; i < h; i++) {
285      float *pRow = p;
286      for (j = 0; j < w; j++, pRow += 4) {
287         pRow[0] =
288         pRow[1] =
289         pRow[2] =
290         pRow[3] = (float)(*src++ & 0xff);
291      }
292      p += dst_stride;
293   }
294}
295
296/*** PIPE_FORMAT_Z32_FLOAT ***/
297
298/**
299 * Return each Z value as four floats in [0,1].
300 */
301static void
302z32f_get_tile_rgba(const float *src,
303                   unsigned w, unsigned h,
304                   float *p,
305                   unsigned dst_stride)
306{
307   unsigned i, j;
308
309   for (i = 0; i < h; i++) {
310      float *pRow = p;
311      for (j = 0; j < w; j++, pRow += 4) {
312         pRow[0] =
313         pRow[1] =
314         pRow[2] =
315         pRow[3] = *src++;
316      }
317      p += dst_stride;
318   }
319}
320
321
322void
323pipe_tile_raw_to_rgba(enum pipe_format format,
324                      void *src,
325                      uint w, uint h,
326                      float *dst, unsigned dst_stride)
327{
328   switch (format) {
329   case PIPE_FORMAT_Z16_UNORM:
330      z16_get_tile_rgba((ushort *) src, w, h, dst, dst_stride);
331      break;
332   case PIPE_FORMAT_Z32_UNORM:
333      z32_get_tile_rgba((unsigned *) src, w, h, dst, dst_stride);
334      break;
335   case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
336   case PIPE_FORMAT_Z24X8_UNORM:
337      s8z24_get_tile_rgba((unsigned *) src, w, h, dst, dst_stride);
338      break;
339   case PIPE_FORMAT_S8_USCALED:
340      s8_get_tile_rgba((unsigned char *) src, w, h, dst, dst_stride);
341      break;
342   case PIPE_FORMAT_X24S8_USCALED:
343      s8x24_get_tile_rgba((unsigned *) src, w, h, dst, dst_stride);
344      break;
345   case PIPE_FORMAT_S8_USCALED_Z24_UNORM:
346   case PIPE_FORMAT_X8Z24_UNORM:
347      z24s8_get_tile_rgba((unsigned *) src, w, h, dst, dst_stride);
348      break;
349   case PIPE_FORMAT_S8X24_USCALED:
350      x24s8_get_tile_rgba((unsigned *) src, w, h, dst, dst_stride);
351      break;
352   case PIPE_FORMAT_Z32_FLOAT:
353      z32f_get_tile_rgba((float *) src, w, h, dst, dst_stride);
354      break;
355   default:
356      util_format_read_4f(format,
357                          dst, dst_stride * sizeof(float),
358                          src, util_format_get_stride(format, w),
359                          0, 0, w, h);
360   }
361}
362
363
364void
365pipe_get_tile_rgba(struct pipe_context *pipe,
366                   struct pipe_transfer *pt,
367                   uint x, uint y, uint w, uint h,
368                   float *p)
369{
370   unsigned dst_stride = w * 4;
371   void *packed;
372   enum pipe_format format = pt->resource->format;
373
374   if (u_clip_tile(x, y, &w, &h, &pt->box))
375      return;
376
377   packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
378
379   if (!packed)
380      return;
381
382   if(format == PIPE_FORMAT_UYVY || format == PIPE_FORMAT_YUYV)
383      assert((x & 1) == 0);
384
385   pipe_get_tile_raw(pipe, pt, x, y, w, h, packed, 0);
386
387   pipe_tile_raw_to_rgba(format, packed, w, h, p, dst_stride);
388
389   FREE(packed);
390}
391
392
393void
394pipe_get_tile_rgba_format(struct pipe_context *pipe,
395                          struct pipe_transfer *pt,
396                          uint x, uint y, uint w, uint h,
397                          enum pipe_format format,
398                          float *p)
399{
400   unsigned dst_stride = w * 4;
401   void *packed;
402
403   if (u_clip_tile(x, y, &w, &h, &pt->box)) {
404      return;
405   }
406
407   packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
408   if (!packed) {
409      return;
410   }
411
412   if (format == PIPE_FORMAT_UYVY || format == PIPE_FORMAT_YUYV) {
413      assert((x & 1) == 0);
414   }
415
416   pipe_get_tile_raw(pipe, pt, x, y, w, h, packed, 0);
417
418   pipe_tile_raw_to_rgba(format, packed, w, h, p, dst_stride);
419
420   FREE(packed);
421}
422
423
424void
425pipe_put_tile_rgba(struct pipe_context *pipe,
426                   struct pipe_transfer *pt,
427                   uint x, uint y, uint w, uint h,
428                   const float *p)
429{
430   unsigned src_stride = w * 4;
431   void *packed;
432   enum pipe_format format = pt->resource->format;
433
434   if (u_clip_tile(x, y, &w, &h, &pt->box))
435      return;
436
437   packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
438
439   if (!packed)
440      return;
441
442   switch (format) {
443   case PIPE_FORMAT_Z16_UNORM:
444      /*z16_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
445      break;
446   case PIPE_FORMAT_Z32_UNORM:
447      /*z32_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
448      break;
449   case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
450   case PIPE_FORMAT_Z24X8_UNORM:
451      /*s8z24_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
452      break;
453   case PIPE_FORMAT_S8_USCALED_Z24_UNORM:
454   case PIPE_FORMAT_X8Z24_UNORM:
455      /*z24s8_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
456      break;
457   default:
458      util_format_write_4f(format,
459                           p, src_stride * sizeof(float),
460                           packed, util_format_get_stride(format, w),
461                           0, 0, w, h);
462   }
463
464   pipe_put_tile_raw(pipe, pt, x, y, w, h, packed, 0);
465
466   FREE(packed);
467}
468
469
470/**
471 * Get a block of Z values, converted to 32-bit range.
472 */
473void
474pipe_get_tile_z(struct pipe_context *pipe,
475                struct pipe_transfer *pt,
476                uint x, uint y, uint w, uint h,
477                uint *z)
478{
479   const uint dstStride = w;
480   ubyte *map;
481   uint *pDest = z;
482   uint i, j;
483   enum pipe_format format = pt->resource->format;
484
485   if (u_clip_tile(x, y, &w, &h, &pt->box))
486      return;
487
488   map = (ubyte *)pipe->transfer_map(pipe, pt);
489   if (!map) {
490      assert(0);
491      return;
492   }
493
494   switch (format) {
495   case PIPE_FORMAT_Z32_UNORM:
496      {
497         const uint *ptrc
498            = (const uint *)(map  + y * pt->stride + x*4);
499         for (i = 0; i < h; i++) {
500            memcpy(pDest, ptrc, 4 * w);
501            pDest += dstStride;
502            ptrc += pt->stride/4;
503         }
504      }
505      break;
506   case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
507   case PIPE_FORMAT_Z24X8_UNORM:
508      {
509         const uint *ptrc
510            = (const uint *)(map + y * pt->stride + x*4);
511         for (i = 0; i < h; i++) {
512            for (j = 0; j < w; j++) {
513               /* convert 24-bit Z to 32-bit Z */
514               pDest[j] = (ptrc[j] << 8) | ((ptrc[j] >> 16) & 0xff);
515            }
516            pDest += dstStride;
517            ptrc += pt->stride/4;
518         }
519      }
520      break;
521   case PIPE_FORMAT_S8_USCALED_Z24_UNORM:
522   case PIPE_FORMAT_X8Z24_UNORM:
523      {
524         const uint *ptrc
525            = (const uint *)(map + y * pt->stride + x*4);
526         for (i = 0; i < h; i++) {
527            for (j = 0; j < w; j++) {
528               /* convert 24-bit Z to 32-bit Z */
529               pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff);
530            }
531            pDest += dstStride;
532            ptrc += pt->stride/4;
533         }
534      }
535      break;
536   case PIPE_FORMAT_Z16_UNORM:
537      {
538         const ushort *ptrc
539            = (const ushort *)(map + y * pt->stride + x*2);
540         for (i = 0; i < h; i++) {
541            for (j = 0; j < w; j++) {
542               /* convert 16-bit Z to 32-bit Z */
543               pDest[j] = (ptrc[j] << 16) | ptrc[j];
544            }
545            pDest += dstStride;
546            ptrc += pt->stride/2;
547         }
548      }
549      break;
550   default:
551      assert(0);
552   }
553
554   pipe->transfer_unmap(pipe, pt);
555}
556
557
558void
559pipe_put_tile_z(struct pipe_context *pipe,
560                struct pipe_transfer *pt,
561                uint x, uint y, uint w, uint h,
562                const uint *zSrc)
563{
564   const uint srcStride = w;
565   const uint *ptrc = zSrc;
566   ubyte *map;
567   uint i, j;
568   enum pipe_format format = pt->resource->format;
569
570   if (u_clip_tile(x, y, &w, &h, &pt->box))
571      return;
572
573   map = (ubyte *)pipe->transfer_map(pipe, pt);
574   if (!map) {
575      assert(0);
576      return;
577   }
578
579   switch (format) {
580   case PIPE_FORMAT_Z32_UNORM:
581      {
582         uint *pDest = (uint *) (map + y * pt->stride + x*4);
583         for (i = 0; i < h; i++) {
584            memcpy(pDest, ptrc, 4 * w);
585            pDest += pt->stride/4;
586            ptrc += srcStride;
587         }
588      }
589      break;
590   case PIPE_FORMAT_Z24_UNORM_S8_USCALED:
591      {
592         uint *pDest = (uint *) (map + y * pt->stride + x*4);
593         /*assert((pt->usage & PIPE_TRANSFER_READ_WRITE) == PIPE_TRANSFER_READ_WRITE);*/
594         for (i = 0; i < h; i++) {
595            for (j = 0; j < w; j++) {
596               /* convert 32-bit Z to 24-bit Z, preserve stencil */
597               pDest[j] = (pDest[j] & 0xff000000) | ptrc[j] >> 8;
598            }
599            pDest += pt->stride/4;
600            ptrc += srcStride;
601         }
602      }
603      break;
604   case PIPE_FORMAT_Z24X8_UNORM:
605      {
606         uint *pDest = (uint *) (map + y * pt->stride + x*4);
607         for (i = 0; i < h; i++) {
608            for (j = 0; j < w; j++) {
609               /* convert 32-bit Z to 24-bit Z (0 stencil) */
610               pDest[j] = ptrc[j] >> 8;
611            }
612            pDest += pt->stride/4;
613            ptrc += srcStride;
614         }
615      }
616      break;
617   case PIPE_FORMAT_S8_USCALED_Z24_UNORM:
618      {
619         uint *pDest = (uint *) (map + y * pt->stride + x*4);
620         /*assert((pt->usage & PIPE_TRANSFER_READ_WRITE) == PIPE_TRANSFER_READ_WRITE);*/
621         for (i = 0; i < h; i++) {
622            for (j = 0; j < w; j++) {
623               /* convert 32-bit Z to 24-bit Z, preserve stencil */
624               pDest[j] = (pDest[j] & 0xff) | (ptrc[j] & 0xffffff00);
625            }
626            pDest += pt->stride/4;
627            ptrc += srcStride;
628         }
629      }
630      break;
631   case PIPE_FORMAT_X8Z24_UNORM:
632      {
633         uint *pDest = (uint *) (map + y * pt->stride + x*4);
634         for (i = 0; i < h; i++) {
635            for (j = 0; j < w; j++) {
636               /* convert 32-bit Z to 24-bit Z (0 stencil) */
637               pDest[j] = ptrc[j] & 0xffffff00;
638            }
639            pDest += pt->stride/4;
640            ptrc += srcStride;
641         }
642      }
643      break;
644   case PIPE_FORMAT_Z16_UNORM:
645      {
646         ushort *pDest = (ushort *) (map + y * pt->stride + x*2);
647         for (i = 0; i < h; i++) {
648            for (j = 0; j < w; j++) {
649               /* convert 32-bit Z to 16-bit Z */
650               pDest[j] = ptrc[j] >> 16;
651            }
652            pDest += pt->stride/2;
653            ptrc += srcStride;
654         }
655      }
656      break;
657   default:
658      assert(0);
659   }
660
661   pipe->transfer_unmap(pipe, pt);
662}
663
664
665