diff options
author | Christian König <[email protected]> | 2011-07-08 15:07:39 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-07-08 15:07:39 +0200 |
commit | 3bb33c911b895819fde5e179b2466c08f88164cf (patch) | |
tree | e50701bc341b722b4cbdfa058c289620fc5151b4 /src/gallium/include/pipe | |
parent | bd5fd67a3e3cda4b7676dd4745fc5d5524709210 (diff) |
[g3dvl] remove the unused priv member from pipe_video_context
Diffstat (limited to 'src/gallium/include/pipe')
-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 |