iris: Delete map->dest_had_defined_contents

Dead since commit 6cc09699cd.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19209>
This commit is contained in:
Kenneth Graunke 2022-09-29 16:36:01 -07:00 committed by Marge Bot
parent 907fbf22dd
commit b82d545442
2 changed files with 0 additions and 6 deletions

View file

@ -2433,10 +2433,6 @@ iris_transfer_map(struct pipe_context *ctx,
xfer->box = *box;
*ptransfer = xfer;
map->dest_had_defined_contents =
util_ranges_intersect(&res->valid_buffer_range, box->x,
box->x + box->width);
if (usage & PIPE_MAP_WRITE)
util_range_add(&res->base.b, &res->valid_buffer_range, box->x, box->x + box->width);

View file

@ -281,8 +281,6 @@ struct iris_transfer {
struct blorp_context *blorp;
struct iris_batch *batch;
bool dest_had_defined_contents;
void (*unmap)(struct iris_transfer *);
};