diff options
author | Christian König <[email protected]> | 2013-07-15 08:48:41 -0600 |
---|---|---|
committer | Christian König <[email protected]> | 2013-08-19 10:21:15 +0200 |
commit | 5ddd840f5aacb7cc6e62b712aa737c683bd91f55 (patch) | |
tree | fb2cb878028b5eedaac452c83b60c294e192c44f /src/gallium/auxiliary/vl | |
parent | a15cbabb8b546fa063cfb6f528dd67ee0037079b (diff) |
vl: add entrypoint to is_video_format_supported
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_video_buffer.c | 3 | ||||
-rw-r--r-- | src/gallium/auxiliary/vl/vl_video_buffer.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/vl/vl_video_buffer.c b/src/gallium/auxiliary/vl/vl_video_buffer.c index d81c1815abf..f0ba3891eb6 100644 --- a/src/gallium/auxiliary/vl/vl_video_buffer.c +++ b/src/gallium/auxiliary/vl/vl_video_buffer.c @@ -147,7 +147,8 @@ vl_video_buffer_surface_format(enum pipe_format format) boolean vl_video_buffer_is_format_supported(struct pipe_screen *screen, enum pipe_format format, - enum pipe_video_profile profile) + enum pipe_video_profile profile, + enum pipe_video_entrypoint entrypoint) { const enum pipe_format *resource_formats; unsigned i; diff --git a/src/gallium/auxiliary/vl/vl_video_buffer.h b/src/gallium/auxiliary/vl/vl_video_buffer.h index e92e2703116..b936a378e1e 100644 --- a/src/gallium/auxiliary/vl/vl_video_buffer.h +++ b/src/gallium/auxiliary/vl/vl_video_buffer.h @@ -73,7 +73,8 @@ vl_video_buffer_max_size(struct pipe_screen *screen); boolean vl_video_buffer_is_format_supported(struct pipe_screen *screen, enum pipe_format format, - enum pipe_video_profile profile); + enum pipe_video_profile profile, + enum pipe_video_entrypoint entrypoint); /* * set the associated data for the given video buffer |