diff options
author | Brian Paul <[email protected]> | 2011-09-17 16:17:46 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-20 20:17:41 -0600 |
commit | 460863ace9cf24b0dc34dd95f6bf4d2871907919 (patch) | |
tree | ad2d39195c683e7a9dd15aa85e684ec8cb053545 /src/mesa/main | |
parent | 499f0685e8236eca410fce516de0e9bab7e25be8 (diff) |
mesa: remove unused UNCLAMPED_FLOAT_TO_RGB_CHAN() macro
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/colormac.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/main/colormac.h b/src/mesa/main/colormac.h index d64cc8d1c3a..46377ac7c11 100644 --- a/src/mesa/main/colormac.h +++ b/src/mesa/main/colormac.h @@ -97,22 +97,6 @@ /** - * Convert 3 channels at once. - * - * \param dst pointer to destination GLchan[3] array. - * \param f pointer to source GLfloat[3] array. - * - * \sa #UNCLAMPED_FLOAT_TO_CHAN. - */ -#define UNCLAMPED_FLOAT_TO_RGB_CHAN(dst, f) \ -do { \ - UNCLAMPED_FLOAT_TO_CHAN((dst)[0], (f)[0]); \ - UNCLAMPED_FLOAT_TO_CHAN((dst)[1], (f)[1]); \ - UNCLAMPED_FLOAT_TO_CHAN((dst)[2], (f)[2]); \ -} while (0) - - -/** * Convert 4 channels at once. * * \param dst pointer to destination GLchan[4] array. |