From 8e3e9d283976c30a8ba9b51821bc61ddf782e2b0 Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Sun, 17 Jul 2016 14:34:50 +0200 Subject: gallium/util: don't modify usage in pipe_buffer_write MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All drivers were already doing it except virgl. Reviewed-by: Nicolai Hähnle --- src/gallium/auxiliary/util/u_inlines.h | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/gallium/auxiliary') diff --git a/src/gallium/auxiliary/util/u_inlines.h b/src/gallium/auxiliary/util/u_inlines.h index 07f73546ad7..c2a0b08d151 100644 --- a/src/gallium/auxiliary/util/u_inlines.h +++ b/src/gallium/auxiliary/util/u_inlines.h @@ -339,15 +339,8 @@ pipe_buffer_write(struct pipe_context *pipe, unsigned size, const void *data) { - unsigned access = PIPE_TRANSFER_WRITE; - - if (offset == 0 && size == buf->width0) { - access |= PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE; - } else { - access |= PIPE_TRANSFER_DISCARD_RANGE; - } - - pipe->buffer_subdata(pipe, buf, access, offset, size, data); + /* Don't set any other usage bits. Drivers should derive them. */ + pipe->buffer_subdata(pipe, buf, PIPE_TRANSFER_WRITE, offset, size, data); } /** -- cgit v1.2.3