diff options
Diffstat (limited to 'src/mesa/drivers/windows/wmesaBackup.c')
-rw-r--r-- | src/mesa/drivers/windows/wmesaBackup.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/drivers/windows/wmesaBackup.c b/src/mesa/drivers/windows/wmesaBackup.c index baa57a4ee4f..33a7c40de94 100644 --- a/src/mesa/drivers/windows/wmesaBackup.c +++ b/src/mesa/drivers/windows/wmesaBackup.c @@ -1,4 +1,4 @@ -/* $Id: wmesaBackup.c,v 1.2 2000/11/05 18:41:00 keithw Exp $ */ +/* $Id: wmesaBackup.c,v 1.3 2001/03/03 20:33:29 brianp Exp $ */ /* * File name : wmesa.c @@ -22,6 +22,9 @@ /* * $Log: wmesaBackup.c,v $ + * Revision 1.3 2001/03/03 20:33:29 brianp + * lots of gl_*() to _mesa_*() namespace clean-up + * * Revision 1.2 2000/11/05 18:41:00 keithw * - Changes for new software rasterizer modules * - Remove support for choosing software fallbacks from core code @@ -1407,7 +1410,7 @@ void WMesaMakeCurrent( WMesaContext c ) Current = c; if (Current->gl_ctx->Viewport.Width==0) { /* initialize viewport to window size */ - gl_Viewport( Current->gl_ctx, + _mesa_set_viewport( Current->gl_ctx, 0, 0, Current->width, Current->height ); } if ((c->cColorBits <= 8 ) && (c->rgb_flag == GL_TRUE)){ |