diff options
author | Brian Paul <[email protected]> | 2012-02-20 13:13:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-02-24 08:03:15 -0700 |
commit | 2b0aa3fb21386051976bf3c45e6455fc45d69bb3 (patch) | |
tree | ae6175d31ed8b7ebfd593b610b87ac4e271ee3f5 /src/mesa/swrast/s_chan.h | |
parent | 7ad880f49ffc5662c1d9cd86e6a5c30dbe71784b (diff) |
mesa: move more swrast-related #defines out of core Mesa
Diffstat (limited to 'src/mesa/swrast/s_chan.h')
-rw-r--r-- | src/mesa/swrast/s_chan.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_chan.h b/src/mesa/swrast/s_chan.h index 94ac8b65be1..1db7fae4dff 100644 --- a/src/mesa/swrast/s_chan.h +++ b/src/mesa/swrast/s_chan.h @@ -36,6 +36,14 @@ /** + * Default bits per color channel: 8, 16 or 32 + */ +#ifndef CHAN_BITS +#define CHAN_BITS 8 +#endif + + +/** * Color channel data type. */ #if CHAN_BITS == 8 |