From b6bcae5698df88f7730d40004ce7ce0462e97a20 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 23 Jan 2001 23:39:36 +0000 Subject: Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h. Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups. --- src/mesa/swrast/s_alphabuf.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/mesa/swrast/s_alphabuf.c') diff --git a/src/mesa/swrast/s_alphabuf.c b/src/mesa/swrast/s_alphabuf.c index 11b782e787..0da11a5f25 100644 --- a/src/mesa/swrast/s_alphabuf.c +++ b/src/mesa/swrast/s_alphabuf.c @@ -1,9 +1,10 @@ +/* $Id: s_alphabuf.c,v 1.3 2001/01/23 23:39:37 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.5 * - * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -69,7 +70,7 @@ alloc_alpha_buffers( GLcontext *ctx, GLframebuffer *buf ) "Couldn't allocate front-left alpha buffer" ); } - if (ctx->Visual.DBflag) { + if (ctx->Visual.doubleBufferMode) { if (buf->BackLeftAlpha) { FREE( buf->BackLeftAlpha ); } @@ -81,7 +82,7 @@ alloc_alpha_buffers( GLcontext *ctx, GLframebuffer *buf ) } } - if (ctx->Visual.StereoFlag) { + if (ctx->Visual.stereoMode) { if (buf->FrontRightAlpha) { FREE( buf->FrontRightAlpha ); } @@ -92,7 +93,7 @@ alloc_alpha_buffers( GLcontext *ctx, GLframebuffer *buf ) "Couldn't allocate front-right alpha buffer" ); } - if (ctx->Visual.DBflag) { + if (ctx->Visual.doubleBufferMode) { if (buf->BackRightAlpha) { FREE( buf->BackRightAlpha ); } -- cgit v1.2.3