summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-03-10 16:32:34 +0100
committerMichal Krol <michal@vmware.com>2010-03-10 16:32:34 +0100
commit5d4360d10cd39e28ee3b563e95959f3dd22c5242 (patch)
tree317e6cbd2278ba25b6f9e907f2410f9c7e63fd2c
parent3ce4375912c8ea488460e593e07c5bb15b92dca9 (diff)
gallium: pipe_get_tile_swizzle() accepts format parameter.
Enables casting of texture data.
-rw-r--r--src/gallium/auxiliary/util/u_tile.c22
-rw-r--r--src/gallium/auxiliary/util/u_tile.h1
-rw-r--r--src/gallium/drivers/softpipe/sp_tex_tile_cache.c2
-rw-r--r--src/gallium/drivers/softpipe/sp_tex_tile_cache.h1
4 files changed, 25 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_tile.c b/src/gallium/auxiliary/util/u_tile.c
index 024d9577bc..8a36d4d9d1 100644
--- a/src/gallium/auxiliary/util/u_tile.c
+++ b/src/gallium/auxiliary/util/u_tile.c
@@ -1283,12 +1283,32 @@ pipe_get_tile_swizzle(struct pipe_transfer *pt,
uint swizzle_g,
uint swizzle_b,
uint swizzle_a,
+ enum pipe_format format,
float *p)
{
+ unsigned dst_stride = w * 4;
+ void *packed;
uint i;
float rgba01[6];
- pipe_get_tile_rgba(pt, x, y, w, h, p);
+ if (pipe_clip_tile(x, y, &w, &h, pt)) {
+ return;
+ }
+
+ packed = MALLOC(util_format_get_nblocks(format, w, h) * util_format_get_blocksize(format));
+ if (!packed) {
+ return;
+ }
+
+ if (format == PIPE_FORMAT_UYVY || format == PIPE_FORMAT_YUYV) {
+ assert((x & 1) == 0);
+ }
+
+ pipe_get_tile_raw(pt, x, y, w, h, packed, 0);
+
+ pipe_tile_raw_to_rgba(format, packed, w, h, p, dst_stride);
+
+ FREE(packed);
if (swizzle_r == PIPE_SWIZZLE_RED &&
swizzle_g == PIPE_SWIZZLE_GREEN &&
diff --git a/src/gallium/auxiliary/util/u_tile.h b/src/gallium/auxiliary/util/u_tile.h
index b4706179a5..d665fdb1bb 100644
--- a/src/gallium/auxiliary/util/u_tile.h
+++ b/src/gallium/auxiliary/util/u_tile.h
@@ -81,6 +81,7 @@ pipe_get_tile_swizzle(struct pipe_transfer *pt,
uint swizzle_g,
uint swizzle_b,
uint swizzle_a,
+ enum pipe_format format,
float *p);
void
diff --git a/src/gallium/drivers/softpipe/sp_tex_tile_cache.c b/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
index b9635bee78..dfa002a79b 100644
--- a/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
+++ b/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
@@ -150,6 +150,7 @@ sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
tc->swizzle_g = view->swizzle_g;
tc->swizzle_b = view->swizzle_b;
tc->swizzle_a = view->swizzle_a;
+ tc->format = view->format;
}
/* mark as entries as invalid/empty */
@@ -274,6 +275,7 @@ sp_find_cached_tile_tex(struct softpipe_tex_tile_cache *tc,
tc->swizzle_g,
tc->swizzle_b,
tc->swizzle_a,
+ tc->format,
(float *) tile->data.color);
tile->addr = addr;
}
diff --git a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
index c562f721be..f8770409d8 100644
--- a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
+++ b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
@@ -87,6 +87,7 @@ struct softpipe_tex_tile_cache
unsigned swizzle_g;
unsigned swizzle_b;
unsigned swizzle_a;
+ unsigned format;
struct softpipe_tex_cached_tile *last_tile; /**< most recently retrieved tile */
};