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/winsys/xlib | |
parent | 876e95dcc83d05dfecb0dcb890f42af0a565e6a6 (diff) |
softpipe: Simplify softpipe_create's prototype.
Diffstat (limited to 'src/gallium/winsys/xlib')
-rw-r--r-- | src/gallium/winsys/xlib/xlib_softpipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/xlib/xlib_softpipe.c b/src/gallium/winsys/xlib/xlib_softpipe.c index 762ebd98477..44b8464518a 100644 --- a/src/gallium/winsys/xlib/xlib_softpipe.c +++ b/src/gallium/winsys/xlib/xlib_softpipe.c @@ -482,7 +482,7 @@ xlib_create_softpipe_context( struct pipe_screen *screen, { struct pipe_context *pipe; - pipe = softpipe_create(screen, screen->winsys, NULL); + pipe = softpipe_create(screen); if (pipe == NULL) goto fail; |