aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-02-18 23:01:14 +0100
committerMarek Olšák <[email protected]>2017-05-15 13:01:33 +0200
commitdca19b1d427f0ecbc0bbd530d1fc3f6c0ce2b5c1 (patch)
treec4ce730040d6e747ba65c3c7e6924fe9b62122fb /src/gallium
parent8559fa505d5972bbbcca4b90c31da4788162b845 (diff)
gallium/u_upload: add u_upload_clone
Reviewed-by: Nicolai Hähnle <[email protected]> Tested-by: Dieter Nützel <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/auxiliary/util/u_upload_mgr.c7
-rw-r--r--src/gallium/auxiliary/util/u_upload_mgr.h7
2 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_upload_mgr.c b/src/gallium/auxiliary/util/u_upload_mgr.c
index 32697b8eda3..9528495038c 100644
--- a/src/gallium/auxiliary/util/u_upload_mgr.c
+++ b/src/gallium/auxiliary/util/u_upload_mgr.c
@@ -97,6 +97,13 @@ u_upload_create_default(struct pipe_context *pipe)
PIPE_USAGE_STREAM);
}
+struct u_upload_mgr *
+u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload)
+{
+ return u_upload_create(pipe, upload->default_size, upload->bind,
+ upload->usage);
+}
+
static void upload_unmap_internal(struct u_upload_mgr *upload, boolean destroying)
{
if (!destroying && upload->map_persistent)
diff --git a/src/gallium/auxiliary/util/u_upload_mgr.h b/src/gallium/auxiliary/util/u_upload_mgr.h
index 45382917021..536467eb35c 100644
--- a/src/gallium/auxiliary/util/u_upload_mgr.h
+++ b/src/gallium/auxiliary/util/u_upload_mgr.h
@@ -62,6 +62,13 @@ struct u_upload_mgr *
u_upload_create_default(struct pipe_context *pipe);
/**
+ * Create an uploader with identical parameters as another one, but using
+ * the given pipe_context instead.
+ */
+struct u_upload_mgr *
+u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload);
+
+/**
* Destroy the upload manager.
*/
void u_upload_destroy( struct u_upload_mgr *upload );