diff options
author | José Fonseca <[email protected]> | 2011-03-06 09:12:58 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-03-06 09:12:58 +0000 |
commit | 7cb17862c6a5690fbe88508cbb772ba92373292f (patch) | |
tree | 371358e8e2113177d8685d6875ddd43da610640d /src/gallium/auxiliary/pipebuffer | |
parent | e1510d48165abbfdbe5036b6eb1e4ae89b4ad5fb (diff) |
pb: Add is_buffer_busy for malloc buffers.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c b/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c index c2322eed19b..5754f476188 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c +++ b/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c @@ -174,11 +174,20 @@ pb_malloc_bufmgr_destroy(struct pb_manager *mgr) } +static boolean +pb_malloc_bufmgr_is_buffer_busy( struct pb_manager *mgr, + struct pb_buffer *buf ) +{ + return FALSE; +} + + static struct pb_manager pb_malloc_bufmgr = { pb_malloc_bufmgr_destroy, pb_malloc_bufmgr_create_buffer, - pb_malloc_bufmgr_flush + pb_malloc_bufmgr_flush, + pb_malloc_bufmgr_is_buffer_busy }; |