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/softpipe/sp_context.c | |
parent | 3bb33c911b895819fde5e179b2466c08f88164cf (diff) |
[g3dvl] move video buffer creation out of video context
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index ce22f646228..0e623944e59 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -37,6 +37,7 @@ #include "util/u_memory.h" #include "util/u_inlines.h" #include "tgsi/tgsi_exec.h" +#include "vl/vl_video_buffer.h" #include "sp_clear.h" #include "sp_context.h" #include "sp_flush.h" @@ -258,6 +259,8 @@ softpipe_create_context( struct pipe_screen *screen, softpipe->pipe.flush = softpipe_flush_wrapped; softpipe->pipe.render_condition = softpipe_render_condition; + + softpipe->pipe.create_video_buffer = vl_video_buffer_create; /* * Alloc caches for accessing drawing surfaces and textures. |