From: Karl Schultz Date: Mon, 29 Jul 2002 00:01:00 +0000 (+0000) Subject: Catch up windows driver with recent context mods X-Git-Tag: 062012170305~26399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1dee4fe8f2dd4049bd768ab09706f6d78cc915f;p=profile%2Fivi%2Fmesa.git Catch up windows driver with recent context mods --- diff --git a/src/mesa/drivers/windows/wmesa.c b/src/mesa/drivers/windows/wmesa.c index 35a6700..134f685 100644 --- a/src/mesa/drivers/windows/wmesa.c +++ b/src/mesa/drivers/windows/wmesa.c @@ -1,4 +1,4 @@ -/* $Id: wmesa.c,v 1.32 2002/07/09 01:22:51 brianp Exp $ */ +/* $Id: wmesa.c,v 1.33 2002/07/29 00:01:00 kschultz Exp $ */ /* * Windows (Win32) device driver for Mesa 3.4 @@ -1343,7 +1343,7 @@ WMesaContext WMesaCreateContext( HWND hWnd, HPALETTE* Pal, if (!_mesa_initialize_context(c->gl_ctx, c->gl_visual, (GLcontext *) NULL, - (void *) c, GL_TRUE )) { + &imports)) { _mesa_destroy_visual( c->gl_visual ); free(c); return NULL; @@ -1426,9 +1426,9 @@ void WMesaMakeCurrent( WMesaContext c ) if(Current == c) return; + Current = c; wmesa_update_state(c->gl_ctx, 0); _mesa_make_current(c->gl_ctx, c->gl_buffer); - Current = c; if (Current->gl_ctx->Viewport.Width==0) { /* initialize viewport to window size */ _mesa_Viewport( 0, 0, Current->width, Current->height );