diff options
author | José Fonseca <[email protected]> | 2012-11-28 20:14:17 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-11-29 14:08:43 +0000 |
commit | 75da95c50aedaa4b1abf51ec1dcaf2fe8ddd4f3b (patch) | |
tree | 618541040ca4bef1d6366c435df66c45f0d82c11 /src/gallium/drivers/llvmpipe/lp_texture.h | |
parent | 6916387e5396a891f2ffbc68866802d03f6a0939 (diff) |
llvmpipe: Eliminate color buffer swizzling.
Now dead code.
Also had to remove the show_tiles/show_subtiles because now the color
buffers are always stored in their native format, so there is no longer
an easy way to paint the tile sizes.
Depth-stencil buffers are still swizzled.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_texture.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_texture.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_texture.h b/src/gallium/drivers/llvmpipe/lp_texture.h index 67b254021d6..c2f2ee8d22b 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.h +++ b/src/gallium/drivers/llvmpipe/lp_texture.h @@ -224,18 +224,6 @@ llvmpipe_get_texture_tile(struct llvmpipe_resource *lpr, unsigned x, unsigned y); -void -llvmpipe_unswizzle_cbuf_tile(struct llvmpipe_resource *lpr, - unsigned face_slice, unsigned level, - unsigned x, unsigned y, - uint8_t *tile); - -void -llvmpipe_swizzle_cbuf_tile(struct llvmpipe_resource *lpr, - unsigned face_slice, unsigned level, - unsigned x, unsigned y, - uint8_t *tile); - extern void llvmpipe_print_resources(void); @@ -256,9 +244,6 @@ llvmpipe_is_resource_referenced( struct pipe_context *pipe, struct pipe_resource *presource, unsigned level, int layer); -boolean -llvmpipe_is_format_unswizzled(enum pipe_format format); - unsigned llvmpipe_get_format_alignment(enum pipe_format format); |