From f2ce4dc7dae1a1878c182f3e06fd7d9b64ab9027 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 23 Jan 2004 18:56:25 +0000 Subject: Change software alpha plane pointers from void* to GLchan*, eliminate some casts. --- src/mesa/main/mtypes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/main/mtypes.h') diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 9685dfc11c..815f352701 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1667,10 +1667,10 @@ struct gl_frame_buffer /** \name Software alpha planes */ /*@{*/ - GLvoid *FrontLeftAlpha; /**< array [Width*Height] of GLubyte */ - GLvoid *BackLeftAlpha; /**< array [Width*Height] of GLubyte */ - GLvoid *FrontRightAlpha; /**< array [Width*Height] of GLubyte */ - GLvoid *BackRightAlpha; /**< array [Width*Height] of GLubyte */ + GLchan *FrontLeftAlpha; /**< array [Width*Height] of GLchan */ + GLchan *BackLeftAlpha; /**< array [Width*Height] of GLchan */ + GLchan *FrontRightAlpha; /**< array [Width*Height] of GLchan */ + GLchan *BackRightAlpha; /**< array [Width*Height] of GLchan */ /*@}*/ /** -- cgit v1.2.3