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/drivers | |
parent | bd5fd67a3e3cda4b7676dd4745fc5d5524709210 (diff) |
[g3dvl] remove the unused priv member from pipe_video_context
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 854fc39e014..141df11ef91 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -426,7 +426,7 @@ static boolean r300_is_format_supported(struct pipe_screen* screen, } static struct pipe_video_context * -r300_video_create(struct pipe_screen *screen, struct pipe_context *pipe, void *priv) +r300_video_create(struct pipe_screen *screen, struct pipe_context *pipe) { assert(screen); diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 9e0b0ea3e49..b3264c5a670 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -302,7 +302,7 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void } static struct pipe_video_context * -r600_video_create(struct pipe_screen *screen, struct pipe_context *pipe, void *priv) +r600_video_create(struct pipe_screen *screen, struct pipe_context *pipe) { assert(screen && pipe); diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 2a5485209d1..98147cfd3c8 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -301,7 +301,7 @@ softpipe_flush_frontbuffer(struct pipe_screen *_screen, } static struct pipe_video_context * -sp_video_create(struct pipe_screen *screen, struct pipe_context *context, void *priv) +sp_video_create(struct pipe_screen *screen, struct pipe_context *context) { assert(screen); |