diff options
author | Christian König <[email protected]> | 2011-07-12 00:12:12 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-07-12 00:12:12 +0200 |
commit | efc7fda4627919b5355952d955ee4a2c98505e56 (patch) | |
tree | 4398a353d70746f9d04016316bf6b6e30ebf8171 /src/gallium/drivers/r600 | |
parent | df5e0b9435c869f88234a69db9bfe97342b027d4 (diff) |
[g3dvl] add some more PIPE_VIDEO_CAPs
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 8e492787235..65b12de79b1 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -491,8 +491,13 @@ static int r600_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 1; + case PIPE_VIDEO_CAP_MAX_WIDTH: + case PIPE_VIDEO_CAP_MAX_HEIGHT: + return vl_video_buffer_max_size(screen); default: return 0; } |