diff options
author | Brian Paul <[email protected]> | 2000-10-28 18:34:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-28 18:34:48 +0000 |
commit | ba643a2094a1e844b6ce60f468057057557859ce (patch) | |
tree | 27309b7362369d7339290f3702f4b7179be4c690 /src/mesa/main/config.h | |
parent | a897b335bec7465ab688ef369c75b468b7251b05 (diff) |
Basic work to support deep color channels:
Replace GLubyte with GLchan
Replace 255 with CHAN_MAX
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 7e263630134..35a0dded6ad 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.19 2000/10/26 19:26:18 brianp Exp $ */ +/* $Id: config.h,v 1.20 2000/10/28 18:34:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -164,6 +164,16 @@ #define CHAN_BITS 8 #define CHAN_MAX ((1 << CHAN_BITS) - 1) #define CHAN_MAXF ((GLfloat) CHAN_MAX) +#if CHAN_BITS == 8 + typedef GLubyte GLchan; +#elif CHAN_BITS == 16 + typedef GLushort GLchan; +#else +#error illegal number of color channel bits +#endif + + + /* |