From efc7fda4627919b5355952d955ee4a2c98505e56 Mon Sep 17 00:00:00 2001 From: Christian König Date: Tue, 12 Jul 2011 00:12:12 +0200 Subject: [g3dvl] add some more PIPE_VIDEO_CAPs --- src/gallium/drivers/softpipe/sp_screen.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gallium/drivers/softpipe') diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index f952e6046f0..1e58d27be88 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -33,6 +33,7 @@ #include "pipe/p_defines.h" #include "pipe/p_screen.h" #include "draw/draw_context.h" +#include "vl/vl_decoder.h" #include "vl/vl_video_buffer.h" #include "state_tracker/sw_winsys.h" @@ -177,8 +178,13 @@ softpipe_get_video_param(struct pipe_screen *screen, enum pipe_video_cap param) { switch (param) { + case PIPE_VIDEO_CAP_SUPPORTED: + return vl_profile_supported(screen, profile); case PIPE_VIDEO_CAP_NPOT_TEXTURES: return 0; + case PIPE_VIDEO_CAP_MAX_WIDTH: + case PIPE_VIDEO_CAP_MAX_HEIGHT: + return vl_video_buffer_max_size(screen); default: return 0; } -- cgit v1.2.3