diff options
author | Keith Whitwell <[email protected]> | 2009-01-28 16:47:31 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-01-28 16:47:31 +0000 |
commit | 54688ebdb259c5e8878817a411e24bd98efb8012 (patch) | |
tree | 8fc823366bcfef8c94f1de95834b3897f9a3a14a /src/gallium/state_trackers | |
parent | cfb3fdfcb1aeb22c62a850795a7351ec9594e74d (diff) |
stw: use shared version of make current in icd code
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/wgl/icd/stw_icd.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 ) ); |