From 23d319fc7dda3ae3639c05cd2c7a8bcdac9eac36 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 29 Mar 2002 17:20:48 +0000 Subject: use _glapi_get_context() instead of GET_CURRENT_CONTEXT(ctx); in buffer_size() --- src/mesa/drivers/osmesa/osmesa.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index 1cc7439afd..258f367a7f 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -1,4 +1,4 @@ -/* $Id: osmesa.c,v 1.75 2002/03/16 00:53:15 brianp Exp $ */ +/* $Id: osmesa.c,v 1.76 2002/03/29 17:20:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -877,7 +877,8 @@ static void clear( GLcontext *ctx, GLbitfield mask, GLboolean all, static void buffer_size( GLframebuffer *buffer, GLuint *width, GLuint *height ) { - GET_CURRENT_CONTEXT(ctx); + /* don't use GET_CURRENT_CONTEXT(ctx) here - it's a problem on Windows */ + GLcontext *ctx = (GLcontext *) _glapi_get_context(); (void) buffer; if (ctx) { OSMesaContext osmesa = OSMESA_CONTEXT(ctx); -- cgit v1.2.3