diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-07-14 01:59:57 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-07-16 08:51:16 +0200 |
commit | fe3caa91d3f637bf9cf9f9e7adb992aa8c7ef8e4 (patch) | |
tree | ad13a3ebec02d124511d6897402b8b3fdd5835e2 /src/gallium/drivers/r300/r300_screen_buffer.h | |
parent | 5f9d7bb2425aee65e75667953a6cc304072f2b11 (diff) | |
download | external_mesa3d-fe3caa91d3f637bf9cf9f9e7adb992aa8c7ef8e4.zip external_mesa3d-fe3caa91d3f637bf9cf9f9e7adb992aa8c7ef8e4.tar.gz external_mesa3d-fe3caa91d3f637bf9cf9f9e7adb992aa8c7ef8e4.tar.bz2 |
r300g: rebuild winsys and command submission to support multiple contexts
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen_buffer.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen_buffer.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/gallium/drivers/r300/r300_screen_buffer.h b/src/gallium/drivers/r300/r300_screen_buffer.h index ff35585..4f7c0ec 100644 --- a/src/gallium/drivers/r300/r300_screen_buffer.h +++ b/src/gallium/drivers/r300/r300_screen_buffer.h @@ -97,23 +97,4 @@ static INLINE boolean r300_buffer_is_user_buffer(struct pipe_resource *buffer) return r300_buffer(buffer)->user_buffer ? true : false; } -static INLINE boolean r300_add_buffer(struct r300_winsys_screen *rws, - struct pipe_resource *buffer, - int rd, int wr) -{ - struct r300_buffer *buf = r300_buffer(buffer); - - if (!buf->buf) - return true; - - return rws->add_buffer(rws, buf->buf, rd, wr); -} - -static INLINE boolean r300_add_texture(struct r300_winsys_screen *rws, - struct r300_texture *tex, - int rd, int wr) -{ - return rws->add_buffer(rws, tex->buffer, rd, wr); -} - #endif |