summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_screen.c
diff options
context:
space:
mode:
authorYounes Manton <[email protected]>2010-05-24 00:14:45 -0400
committerYounes Manton <[email protected]>2010-05-24 00:14:45 -0400
commit0a51e8633287b97b4d88e0cb553854535f2fa5e7 (patch)
treea0fe99ec1aa1d969d583011b2b844060fde08b2f /src/gallium/drivers/softpipe/sp_screen.c
parent0e59cd33e6a38567801c7da541e4caffbd6cccd3 (diff)
vl: Use pipe_screen::video_context_create hook instead of SP ctor.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_screen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 11aa0c4583b..00700974c78 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -37,6 +37,7 @@
#include "sp_texture.h"
#include "sp_screen.h"
#include "sp_context.h"
+#include "sp_video_context.h"
#include "sp_fence.h"
#include "sp_public.h"
@@ -274,6 +275,7 @@ softpipe_create_screen(struct sw_winsys *winsys)
screen->base.is_format_supported = softpipe_is_format_supported;
screen->base.context_create = softpipe_create_context;
screen->base.flush_frontbuffer = softpipe_flush_frontbuffer;
+ screen->base.video_context_create = sp_video_create;
util_format_s3tc_init();