diff options
author | José Fonseca <[email protected]> | 2010-01-20 03:43:53 -0800 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-01-21 15:18:40 -0800 |
commit | 3498616b03f4b1da7a2a74ed83e95aee77204a2f (patch) | |
tree | 2f80046b6af1cdb10815b7970f823daee1af2db0 /src/gallium/auxiliary/pipebuffer/pb_bufmgr.h | |
parent | 0bc885188464446dd94542e0af15f3985dcdf684 (diff) |
pipebuffer: Swap buffers out to system memory when running out of memory.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer/pb_bufmgr.h')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h index 8c8d7130781..06669917ff6 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h @@ -175,7 +175,9 @@ struct pb_fence_ops; */ struct pb_manager * fenced_bufmgr_create(struct pb_manager *provider, - struct pb_fence_ops *ops); + struct pb_fence_ops *ops, + pb_size max_buffer_size, + pb_size max_cpu_total_size); struct pb_manager * |