diff options
author | Brian Paul <[email protected]> | 2012-09-29 08:47:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-10-05 17:13:03 -0600 |
commit | 733dba2a08765dddc478a015439ea2a684d5f2a0 (patch) | |
tree | 2308b3cdfa67dc34249c085810af183385801ba4 /src/mesa/state_tracker | |
parent | 917d27392825719146a02acc684fb75f298f59ed (diff) |
mesa: remove the driverCtx parameter to _mesa_create/initialize_context()
No longer used.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index aa353412576..da361d88795 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -225,7 +225,7 @@ struct st_context *st_create_context(gl_api api, struct pipe_context *pipe, memset(&funcs, 0, sizeof(funcs)); st_init_driver_functions(&funcs); - ctx = _mesa_create_context(api, visual, shareCtx, &funcs, NULL); + ctx = _mesa_create_context(api, visual, shareCtx, &funcs); if (!ctx) { return NULL; } |