diff options
author | Brian Paul <[email protected]> | 2004-01-23 18:56:25 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-23 18:56:25 +0000 |
commit | f2ce4dc7dae1a1878c182f3e06fd7d9b64ab9027 (patch) | |
tree | b015c3c23e04ac2994076e9eb416cfee80bb1871 /src/mesa/main | |
parent | 292615071a3867ab90dc7c444f72bcfadd2869f3 (diff) |
Change software alpha plane pointers from void* to GLchan*, eliminate some casts.
Diffstat (limited to 'src/mesa/main')
-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 9685dfc11ca..815f352701f 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 */ /*@}*/ /** |