diff options
author | Christian König <[email protected]> | 2011-07-08 16:56:11 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-07-08 16:56:11 +0200 |
commit | 4e837f557bf5f5afb286e1f2244ed69c0092c2d6 (patch) | |
tree | 5ac1fe3a1f58d5819428577f4daa447741f00eae /src/gallium/drivers/r300/r300_context.c | |
parent | 3bb33c911b895819fde5e179b2466c08f88164cf (diff) |
[g3dvl] move video buffer creation out of video context
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 0554c40eef0..7d22ffb6a94 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -27,6 +27,7 @@ #include "util/u_simple_list.h" #include "util/u_upload_mgr.h" #include "os/os_time.h" +#include "vl/vl_video_buffer.h" #include "r300_cb.h" #include "r300_context.h" @@ -436,6 +437,8 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, r300_init_query_functions(r300); r300_init_state_functions(r300); r300_init_resource_functions(r300); + + r300->context.create_video_buffer = vl_video_buffer_create; r300->vbuf_mgr = u_vbuf_mgr_create(&r300->context, 1024 * 1024, 16, PIPE_BIND_VERTEX_BUFFER | |