diff options
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r-- | src/mesa/main/mtypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 */ /*@}*/ /** |