summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/colormac.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-17 16:17:46 -0600
committerBrian Paul <brianp@vmware.com>2011-09-20 20:17:41 -0600
commit460863ace9cf24b0dc34dd95f6bf4d2871907919 (patch)
treead2d39195c683e7a9dd15aa85e684ec8cb053545 /src/mesa/main/colormac.h
parent499f0685e8236eca410fce516de0e9bab7e25be8 (diff)
downloadexternal_mesa3d-460863ace9cf24b0dc34dd95f6bf4d2871907919.zip
external_mesa3d-460863ace9cf24b0dc34dd95f6bf4d2871907919.tar.gz
external_mesa3d-460863ace9cf24b0dc34dd95f6bf4d2871907919.tar.bz2
mesa: remove unused UNCLAMPED_FLOAT_TO_RGB_CHAN() macro
Diffstat (limited to 'src/mesa/main/colormac.h')
-rw-r--r--src/mesa/main/colormac.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/main/colormac.h b/src/mesa/main/colormac.h
index d64cc8d..46377ac 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.