diff options
author | Marek Olšák <[email protected]> | 2017-03-02 01:42:37 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-17 18:30:21 +0100 |
commit | 6c0a28084d160b9831c2092af4e963ed2d276b88 (patch) | |
tree | 334ceb3f6ce72b5f7c3e550858ae230010da79ca | |
parent | a27b62e794779229210092635e7afccc2fd074c7 (diff) |
gallium/u_upload: make the first persistent mapping unsynchronized
This is simpler for drivers.
-rw-r--r-- | src/gallium/auxiliary/util/u_upload_mgr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_upload_mgr.c b/src/gallium/auxiliary/util/u_upload_mgr.c index 7ef82082dac..32697b8eda3 100644 --- a/src/gallium/auxiliary/util/u_upload_mgr.c +++ b/src/gallium/auxiliary/util/u_upload_mgr.c @@ -74,6 +74,7 @@ u_upload_create(struct pipe_context *pipe, unsigned default_size, if (upload->map_persistent) { upload->map_flags = PIPE_TRANSFER_WRITE | + PIPE_TRANSFER_UNSYNCHRONIZED | PIPE_TRANSFER_PERSISTENT | PIPE_TRANSFER_COHERENT; } |