diff options
author | José Fonseca <[email protected]> | 2009-04-18 23:14:42 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-04-18 23:15:26 +0100 |
commit | dc1153ce83041a397b1d1815db4133ce8c53eaa1 (patch) | |
tree | 182c7f25715aa407c13d11d735726be234c413a8 /src/gallium/drivers/softpipe/sp_context.c | |
parent | 876e95dcc83d05dfecb0dcb890f42af0a565e6a6 (diff) |
softpipe: Simplify softpipe_create's prototype.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 2c6a0b53b0a..62e8d99cfd0 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -137,9 +137,7 @@ softpipe_is_buffer_referenced( struct pipe_context *pipe, } struct pipe_context * -softpipe_create( struct pipe_screen *screen, - struct pipe_winsys *pipe_winsys, - void *unused ) +softpipe_create( struct pipe_screen *screen ) { struct softpipe_context *softpipe = CALLOC_STRUCT(softpipe_context); uint i; @@ -154,7 +152,7 @@ softpipe_create( struct pipe_screen *screen, softpipe->dump_fs = debug_get_bool_option( "GALLIUM_DUMP_FS", FALSE ); - softpipe->pipe.winsys = pipe_winsys; + softpipe->pipe.winsys = screen->winsys; softpipe->pipe.screen = screen; softpipe->pipe.destroy = softpipe_destroy; |