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/state_trackers/python | |
parent | 876e95dcc83d05dfecb0dcb890f42af0a565e6a6 (diff) |
softpipe: Simplify softpipe_create's prototype.
Diffstat (limited to 'src/gallium/state_trackers/python')
-rw-r--r-- | src/gallium/state_trackers/python/st_softpipe_winsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/python/st_softpipe_winsys.c b/src/gallium/state_trackers/python/st_softpipe_winsys.c index 41cdeaa6fdc..f0a4826a001 100644 --- a/src/gallium/state_trackers/python/st_softpipe_winsys.c +++ b/src/gallium/state_trackers/python/st_softpipe_winsys.c @@ -260,7 +260,7 @@ st_softpipe_screen_create(void) static struct pipe_context * st_softpipe_context_create(struct pipe_screen *screen) { - return softpipe_create(screen, screen->winsys, NULL); + return softpipe_create(screen); } |