summaryrefslogtreecommitdiffstats
path: root/chalk/chalkcolor/kis_f32_base_colorspace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/chalkcolor/kis_f32_base_colorspace.cpp')
-rw-r--r--chalk/chalkcolor/kis_f32_base_colorspace.cpp125
1 files changed, 125 insertions, 0 deletions
diff --git a/chalk/chalkcolor/kis_f32_base_colorspace.cpp b/chalk/chalkcolor/kis_f32_base_colorspace.cpp
new file mode 100644
index 000000000..27a6a312e
--- /dev/null
+++ b/chalk/chalkcolor/kis_f32_base_colorspace.cpp
@@ -0,0 +1,125 @@
+/*
+ * Copyright (c) 2005 Adrian Page <adrian@pagenet.plus.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+#include "kdebug.h"
+
+#include "kis_global.h"
+#include "kis_f32_base_colorspace.h"
+
+TQ_UINT8 KisF32BaseColorSpace::getAlpha(const TQ_UINT8 * U8_pixel) const
+{
+ if (m_alphaPos < 0) return OPACITY_OPAQUE;
+
+ U8_pixel += m_alphaPos;
+
+ const float *pixel = reinterpret_cast<const float *>(U8_pixel);
+ return FLOAT_TO_UINT8(*pixel);
+}
+
+void KisF32BaseColorSpace::setAlpha(TQ_UINT8 *U8_pixel, TQ_UINT8 alpha, TQ_INT32 nPixels) const
+{
+ if (m_alphaPos < 0) return;
+ TQ_INT32 psize = pixelSize();
+
+ while (nPixels > 0) {
+
+ float *pixel = reinterpret_cast<float *>(U8_pixel + m_alphaPos);
+ *pixel = UINT8_TO_FLOAT(alpha);
+
+ --nPixels;
+ U8_pixel += psize;
+ }
+}
+
+void KisF32BaseColorSpace::multiplyAlpha(TQ_UINT8 *U8_pixel, TQ_UINT8 U8_alpha, TQ_INT32 nPixels)
+{
+ if (m_alphaPos < 0) return;
+ TQ_INT32 psize = pixelSize();
+ float alpha = UINT8_TO_FLOAT(U8_alpha);
+
+ while (nPixels > 0) {
+
+ float *pixelAlpha = reinterpret_cast<float *>(U8_pixel + m_alphaPos);
+ *pixelAlpha *= alpha;
+
+ --nPixels;
+ U8_pixel += psize;
+ }
+}
+
+void KisF32BaseColorSpace::applyAlphaU8Mask(TQ_UINT8 * U8_pixel, TQ_UINT8 * alpha8, TQ_INT32 nPixels)
+{
+ if (m_alphaPos < 0) return;
+
+ TQ_INT32 psize = pixelSize();
+
+ while (nPixels--) {
+
+ float *pixelAlpha = reinterpret_cast<float *>(U8_pixel + m_alphaPos);
+ *pixelAlpha *= UINT8_TO_FLOAT(*alpha8);
+
+ ++alpha8;
+ U8_pixel += psize;
+ }
+}
+
+void KisF32BaseColorSpace::applyInverseAlphaU8Mask(TQ_UINT8 * U8_pixels, TQ_UINT8 * alpha8, TQ_INT32 nPixels)
+{
+ if (m_alphaPos < 0) return;
+
+ TQ_INT32 psize = pixelSize();
+
+ while (nPixels--) {
+
+ float *pixelAlpha = reinterpret_cast<float *>(U8_pixels + m_alphaPos);
+ *pixelAlpha *= UINT8_TO_FLOAT(MAX_SELECTED - *alpha8);
+
+ U8_pixels += psize;
+ ++alpha8;
+ }
+}
+
+TQString KisF32BaseColorSpace::channelValueText(const TQ_UINT8 *U8_pixel, TQ_UINT32 channelIndex) const
+{
+ Q_ASSERT(channelIndex < (TQ_UINT32)nChannels());
+ const float *pixel = reinterpret_cast<const float *>(U8_pixel);
+ TQ_UINT32 channelPosition = channels()[channelIndex]->pos() / sizeof(float);
+
+ return TQString().setNum(pixel[channelPosition]);
+}
+
+TQString KisF32BaseColorSpace::normalisedChannelValueText(const TQ_UINT8 *U8_pixel, TQ_UINT32 channelIndex) const
+{
+ Q_ASSERT(channelIndex < (TQ_UINT32)nChannels());
+ const float *pixel = reinterpret_cast<const float *>(U8_pixel);
+ TQ_UINT32 channelPosition = channels()[channelIndex]->pos() / sizeof(float);
+
+ return TQString().setNum(100.0 * pixel[channelPosition]);
+}
+
+TQ_UINT8 KisF32BaseColorSpace::scaleToU8(const TQ_UINT8 * U8_pixel, TQ_INT32 channelPos)
+{
+ const float *pixelChannel = reinterpret_cast<const float *>(U8_pixel + channelPos);
+ return FLOAT_TO_UINT8(*pixelChannel);
+}
+
+TQ_UINT16 KisF32BaseColorSpace::scaleToU16(const TQ_UINT8 * U8_pixel, TQ_INT32 channelPos)
+{
+ const float *pixelChannel = reinterpret_cast<const float *>(U8_pixel + channelPos);
+ return FLOAT_TO_UINT16(*pixelChannel);
+}
+