diff options
author | Marek Olšák <[email protected]> | 2012-01-02 01:13:15 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-01-05 18:29:11 +0100 |
commit | 0950086376b1c8b7fb89eda81ed7f2f06dee58bc (patch) | |
tree | 0ca11705eb95036df1590d2fda13239f684d6dee /src/gallium/drivers/nouveau | |
parent | 7cd1c62b6be88072e3d937b67c499592490927f1 (diff) |
gallium: add flag PIPE_TRANSFER_MAP_PERMANENTLY
Please see the diff for further info.
This paves the way for moving user buffer uploads out of drivers and should
allow to clean up the mess in u_upload_mgr in the meantime.
For now only allowed for buffers on r300 and r600.
Acked-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_buffer.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_buffer.c b/src/gallium/drivers/nouveau/nouveau_buffer.c index f822625af90..02186ba3739 100644 --- a/src/gallium/drivers/nouveau/nouveau_buffer.c +++ b/src/gallium/drivers/nouveau/nouveau_buffer.c @@ -172,7 +172,13 @@ nouveau_buffer_transfer_get(struct pipe_context *pipe, { struct nv04_resource *buf = nv04_resource(resource); struct nouveau_context *nv = nouveau_context(pipe); - struct nouveau_transfer *xfr = CALLOC_STRUCT(nouveau_transfer); + struct nouveau_transfer *xfr; + + if (usage & PIPE_TRANSFER_MAP_PERMANENTLY) { + return NULL; + } + + xfr = CALLOC_STRUCT(nouveau_transfer); if (!xfr) return NULL; |