diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-06-30 15:07:54 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-06-30 15:33:53 +0100 |
commit | 18a6f0f1a7fd509cebdc364d67b9476df1d33917 (patch) | |
tree | 89242ec87f7e306cc8ce93e0101231d4bad14afe /src/gallium | |
parent | 4ffe2844a46bcd69c0f2c95f04da97e83899e831 (diff) |
util: Set PIPE_BUFFER_USAGE_FLUSH_EXPLICIT when calling buffer_flush_mapped_range.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_upload_mgr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_upload_mgr.c b/src/gallium/auxiliary/util/u_upload_mgr.c index 2eb98068c8..c90425f3e5 100644 --- a/src/gallium/auxiliary/util/u_upload_mgr.c +++ b/src/gallium/auxiliary/util/u_upload_mgr.c @@ -83,7 +83,9 @@ my_buffer_write(struct pipe_screen *screen, assert(dirty_size >= size); assert(size); - map = pipe_buffer_map_range(screen, buf, offset, size, PIPE_BUFFER_USAGE_CPU_WRITE); + map = pipe_buffer_map_range(screen, buf, offset, size, + PIPE_BUFFER_USAGE_CPU_WRITE | + PIPE_BUFFER_USAGE_FLUSH_EXPLICIT); if (map == NULL) return PIPE_ERROR_OUT_OF_MEMORY; |