diff options
author | José Fonseca <[email protected]> | 2008-06-10 08:38:24 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-10 08:38:24 +0900 |
commit | 0c5b1a8ffb21f72fcde64a7daa13d5dab5b90425 (patch) | |
tree | 95af3fef3dbc5bff2de762282a02baf9c1bd4238 /src/gallium/auxiliary/pipebuffer/pb_bufmgr.h | |
parent | 4b52f4df1b37918a363d05e0b3db22125e801367 (diff) |
pipebuffer: Alternative buffer manager.
For situations where one has a reserve memory pool, or
a faster/slower pool.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer/pb_bufmgr.h')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h index 4a922d16c18..00279f7010f 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h @@ -171,6 +171,11 @@ fenced_bufmgr_create(struct pb_manager *provider, struct pipe_winsys *winsys); +struct pb_manager * +pb_alt_manager_create(struct pb_manager *provider1, + struct pb_manager *provider2); + + #ifdef __cplusplus } #endif |