r600g: remove now-unused r600_bo::size

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Marek Olšák 2011-08-03 01:47:57 +02:00
parent 60ff68ad00
commit cdbb8a195a
2 changed files with 0 additions and 3 deletions

View file

@ -66,7 +66,6 @@ struct r600_bo *r600_bo(struct radeon *radeon,
}
bo = calloc(1, sizeof(struct r600_bo));
bo->size = size;
bo->domains = domains;
bo->bo = rbo;
@ -88,7 +87,6 @@ struct r600_bo *r600_bo_handle(struct radeon *radeon, struct winsys_handle *whan
}
pipe_reference_init(&bo->reference, 1);
bo->size = rbo->size;
bo->domains = (RADEON_GEM_DOMAIN_CPU |
RADEON_GEM_DOMAIN_GTT |
RADEON_GEM_DOMAIN_VRAM);

View file

@ -88,7 +88,6 @@ struct radeon_bo {
struct r600_bo {
struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
/* DO NOT MOVE THIS ^ */
unsigned size;
unsigned domains;
struct radeon_bo *bo;
unsigned fence;