diff options
author | Christian König <[email protected]> | 2011-07-08 12:03:13 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-07-08 12:03:13 +0200 |
commit | 2ec350ff1d9f13ec95d7b9d46f57ad9b9efcc8ea (patch) | |
tree | 64c473beacf39929a013d728b3639bdd98407f91 /src/gallium/include/pipe | |
parent | 7eca76952b6726be9459375dde7478a01789577e (diff) |
[g3dvl] make pipe_context mandatory for creation pipe_video_context
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_screen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index 011724a79cc..32869bb71e8 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -100,7 +100,9 @@ struct pipe_screen { struct pipe_context * (*context_create)( struct pipe_screen *, void *priv ); - struct pipe_video_context * (*video_context_create)( struct pipe_screen *screen, void *priv ); + struct pipe_video_context * (*video_context_create)( struct pipe_screen *screen, + struct pipe_context *context, + void *priv ); /** * Check if the given pipe_format is supported as a texture or |