diff options
author | Keith Whitwell <[email protected]> | 2010-02-08 19:45:02 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-02-08 19:45:02 +0000 |
commit | 361d73fcfc7b5129018e3639279d8dfc6f5f7650 (patch) | |
tree | b532eb66b2fd1d634d090cfe89d10f567249e2bb | |
parent | 0b99303d1c6244094c24844f86f4e7677ee69f18 (diff) |
st/dri: fix compile breakage
-rw-r--r-- | src/gallium/state_trackers/dri/dri_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/dri/dri_context.c b/src/gallium/state_trackers/dri/dri_context.c index 6edbd9d9b15..5033c3c85b8 100644 --- a/src/gallium/state_trackers/dri/dri_context.c +++ b/src/gallium/state_trackers/dri/dri_context.c @@ -69,7 +69,7 @@ dri_create_context(const __GLcontextModes * visual, driParseConfigFiles(&ctx->optionCache, &screen->optionCache, sPriv->myNum, "dri"); - ctx->pipe = screen->pipe_screen->create_context( screen->pipe_screen, + ctx->pipe = screen->pipe_screen->context_create( screen->pipe_screen, ctx ); if (ctx->pipe == NULL) |