diff options
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_screen.h | 3 | ||||
-rw-r--r-- | src/gallium/include/pipe/p_video_context.h | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index 32869bb71e8..28209346c78 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -101,8 +101,7 @@ struct pipe_screen { struct pipe_context * (*context_create)( struct pipe_screen *, void *priv ); struct pipe_video_context * (*video_context_create)( struct pipe_screen *screen, - struct pipe_context *context, - void *priv ); + struct pipe_context *context ); /** * Check if the given pipe_format is supported as a texture or diff --git a/src/gallium/include/pipe/p_video_context.h b/src/gallium/include/pipe/p_video_context.h index 7ea67d3d198..aa42e8e0884 100644 --- a/src/gallium/include/pipe/p_video_context.h +++ b/src/gallium/include/pipe/p_video_context.h @@ -47,8 +47,6 @@ struct pipe_video_context { struct pipe_screen *screen; - void *priv; /**< context private data (for DRI for example) */ - /** * destroy context, all objects created from this context * (buffers, decoders, compositors etc...) must be freed before calling this |