From: Keith Whitwell Date: Wed, 28 Jan 2009 16:47:31 +0000 (+0000) Subject: stw: use shared version of make current in icd code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=54688ebdb259c5e8878817a411e24bd98efb8012;p=mesa.git stw: use shared version of make current in icd code --- diff --git a/src/gallium/state_trackers/wgl/icd/stw_icd.c b/src/gallium/state_trackers/wgl/icd/stw_icd.c index 51967bfc28b..e8ddefccf87 100644 --- a/src/gallium/state_trackers/wgl/icd/stw_icd.c +++ b/src/gallium/state_trackers/wgl/icd/stw_icd.c @@ -235,7 +235,7 @@ DrvReleaseContext( HGLRC hglrc = lookup_hglrc( dhglrc ); if (hglrc != NULL) { - success = wglMakeCurrent( NULL, NULL ); + success = stw_make_current( NULL, NULL ); if (success) stw_icd->ctx_current = 0; } @@ -274,7 +274,7 @@ DrvSetContext( if (hglrc == NULL) return NULL; - if (!wglMakeCurrent( hdc, hglrc )) + if (!stw_make_current( hdc, hglrc )) return NULL; memset( &cpt, 0, sizeof( cpt ) );