lib/intel_batchbuffer: drop cpu_mapping from igt_buf

It's unused. There's still num_tiles getting in the way of things,
but that is used by gem_stress a bit.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter 2014-03-22 18:04:52 +01:00
parent 53a4d9e982
commit 43b7aa44fd
3 changed files with 0 additions and 3 deletions

View File

@ -201,7 +201,6 @@ struct igt_buf {
uint32_t stride;
uint32_t tiling;
uint32_t *data;
uint32_t *cpu_mapping;
uint32_t size;
unsigned num_tiles;
};

View File

@ -126,7 +126,6 @@ static int check_ring(drm_intel_bufmgr *bufmgr,
src.stride = 4 * width;
src.tiling = 0;
src.data = src.cpu_mapping = NULL;
src.size = 4 * width * height;
src.num_tiles = 4 * width * height;
dst = tmp = src;

View File

@ -79,7 +79,6 @@ static void init_buffer(drm_intel_bufmgr *bufmgr,
buf->size = width * height * 4;
igt_assert(buf->bo);
buf->tiling = I915_TILING_NONE;
buf->data = buf->cpu_mapping = NULL;
buf->num_tiles = width * height * 4;
buf->stride = width * 4;
}