llvmpipe: Remove unused framebuffer stuff from the rasterizer.

This commit is contained in:
José Fonseca 2010-05-27 16:38:02 +01:00
parent 2b7fbccfdc
commit 7f1c007840
2 changed files with 6 additions and 18 deletions

View File

@ -61,16 +61,12 @@ lp_rast_begin( struct lp_rasterizer *rast,
for (i = 0; i < rast->state.nr_cbufs; i++) {
struct pipe_surface *cbuf = scene->fb.cbufs[i];
rast->cbuf[i].format = cbuf->texture->format;
rast->cbuf[i].tiles_per_row = align(cbuf->width, TILE_SIZE) / TILE_SIZE;
rast->cbuf[i].blocksize =
util_format_get_blocksize(cbuf->texture->format);
rast->cbuf[i].map = llvmpipe_resource_map(cbuf->texture,
cbuf->face,
cbuf->level,
cbuf->zslice,
LP_TEX_USAGE_READ_WRITE,
LP_TEX_LAYOUT_NONE);
llvmpipe_resource_map(cbuf->texture,
cbuf->face,
cbuf->level,
cbuf->zslice,
LP_TEX_USAGE_READ_WRITE,
LP_TEX_LAYOUT_NONE);
}
if (fb->zsbuf) {
@ -105,7 +101,6 @@ lp_rast_end( struct lp_rasterizer *rast )
cbuf->face,
cbuf->level,
cbuf->zslice);
rast->cbuf[i].map = NULL;
}
/* Unmap z/stencil buffer */

View File

@ -79,13 +79,6 @@ struct lp_rasterizer
/* Framebuffer stuff
*/
struct {
void *map;
unsigned tiles_per_row;
unsigned blocksize;
enum pipe_format format;
} cbuf[PIPE_MAX_COLOR_BUFS];
struct {
uint8_t *map;
unsigned stride;