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/drivers/windows/gdi/wmesa.c | |
parent | 917d27392825719146a02acc684fb75f298f59ed (diff) |
mesa: remove the driverCtx parameter to _mesa_create/initialize_context()
No longer used.
Diffstat (limited to 'src/mesa/drivers/windows/gdi/wmesa.c')
-rw-r--r-- | src/mesa/drivers/windows/gdi/wmesa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/windows/gdi/wmesa.c b/src/mesa/drivers/windows/gdi/wmesa.c index c610202736d..1580e5727bd 100644 --- a/src/mesa/drivers/windows/gdi/wmesa.c +++ b/src/mesa/drivers/windows/gdi/wmesa.c @@ -1085,7 +1085,7 @@ WMesaContext WMesaCreateContext(HDC hDC, /* initialize the Mesa context data */ ctx = &c->gl_ctx; _mesa_initialize_context(ctx, API_OPENGL, visual, - NULL, &functions, (void *)c); + NULL, &functions); /* visual no longer needed - it was copied by _mesa_initialize_context() */ _mesa_destroy_visual(visual); |