mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
r600g: remove now-unused r600_bo::size
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
60ff68ad00
commit
cdbb8a195a
2 changed files with 0 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue