/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2005 The OGRE Team Also see acknowledgements in Readme.html This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt. ----------------------------------------------------------------------------- */ #include "OgreStableHeaders.h" #include "OgrePixelFormat.h" #include "OgreBitwise.h" #include "OgreColourValue.h" #include "OgreException.h" namespace { #include "OgrePixelConversions.h" }; namespace Ogre { //----------------------------------------------------------------------- /** * A record that describes a pixel format in detail. */ struct PixelFormatDescription { /* Name of the format, as in the enum */ char *name; /* Number of bytes one element (colour value) takes. */ unsigned char elemBytes; /* Pixel format flags, see enum PixelFormatFlags for the bit field * definitions */ uint32 flags; /** Component type */ PixelComponentType componentType; /** Component count */ unsigned char componentCount; /* Number of bits for red(or luminance), green, blue, alpha */ unsigned char rbits,gbits,bbits,abits; /*, ibits, dbits, ... */ /* Masks and shifts as used by packers/unpackers */ uint32 rmask, gmask, bmask, amask; unsigned char rshift, gshift, bshift, ashift; }; //----------------------------------------------------------------------- /** Pixel format database */ PixelFormatDescription _pixelFormats[PF_COUNT] = { //----------------------------------------------------------------------- {"PF_UNKNOWN", /* Bytes per element */ 0, /* Flags */ 0, /* Component type and count */ PCT_BYTE, 0, /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_L8", /* Bytes per element */ 1, /* Flags */ PFF_LUMINANCE | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 1, /* rbits, gbits, bbits, abits */ 8, 0, 0, 0, /* Masks and shifts */ 0xFF, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_L16", /* Bytes per element */ 2, /* Flags */ PFF_LUMINANCE | PFF_NATIVEENDIAN, /* Component type and count */ PCT_SHORT, 1, /* rbits, gbits, bbits, abits */ 16, 0, 0, 0, /* Masks and shifts */ 0xFFFF, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_A8", /* Bytes per element */ 1, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 1, /* rbits, gbits, bbits, abits */ 0, 0, 0, 8, /* Masks and shifts */ 0, 0, 0, 0xFF, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_A4L4", /* Bytes per element */ 1, /* Flags */ PFF_HASALPHA | PFF_LUMINANCE | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 2, /* rbits, gbits, bbits, abits */ 4, 0, 0, 4, /* Masks and shifts */ 0x0F, 0, 0, 0xF0, 0, 0, 0, 4 }, //----------------------------------------------------------------------- {"PF_BYTE_LA", /* Bytes per element */ 2, /* Flags */ PFF_HASALPHA | PFF_LUMINANCE, /* Component type and count */ PCT_BYTE, 2, /* rbits, gbits, bbits, abits */ 8, 0, 0, 8, /* Masks and shifts */ 0,0,0,0,0,0,0,0 }, //----------------------------------------------------------------------- {"PF_R5G6B5", /* Bytes per element */ 2, /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 5, 6, 5, 0, /* Masks and shifts */ 0xF800, 0x07E0, 0x001F, 0, 11, 5, 0, 0 }, //----------------------------------------------------------------------- {"PF_B5G6R5", /* Bytes per element */ 2, /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 5, 6, 5, 0, /* Masks and shifts */ 0x001F, 0x07E0, 0xF800, 0, 0, 5, 11, 0 }, //----------------------------------------------------------------------- {"PF_A4R4G4B4", /* Bytes per element */ 2, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 4, 4, 4, 4, /* Masks and shifts */ 0x0F00, 0x00F0, 0x000F, 0xF000, 8, 4, 0, 12 }, //----------------------------------------------------------------------- {"PF_A1R5G5B5", /* Bytes per element */ 2, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 5, 5, 5, 1, /* Masks and shifts */ 0x7C00, 0x03E0, 0x001F, 0x8000, 10, 5, 0, 15, }, //----------------------------------------------------------------------- {"PF_R8G8B8", /* Bytes per element */ 3, // 24 bit integer -- special /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 8, 8, 8, 0, /* Masks and shifts */ 0xFF0000, 0x00FF00, 0x0000FF, 0, 16, 8, 0, 0 }, //----------------------------------------------------------------------- {"PF_B8G8R8", /* Bytes per element */ 3, // 24 bit integer -- special /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 8, 8, 8, 0, /* Masks and shifts */ 0x0000FF, 0x00FF00, 0xFF0000, 0, 0, 8, 16, 0 }, //----------------------------------------------------------------------- {"PF_A8R8G8B8", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 8, 8, 8, 8, /* Masks and shifts */ 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000, 16, 8, 0, 24 }, //----------------------------------------------------------------------- {"PF_A8B8G8R8", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 8, 8, 8, 8, /* Masks and shifts */ 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000, 0, 8, 16, 24, }, //----------------------------------------------------------------------- {"PF_B8G8R8A8", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 8, 8, 8, 8, /* Masks and shifts */ 0x0000FF00, 0x00FF0000, 0xFF000000, 0x000000FF, 8, 16, 24, 0 }, //----------------------------------------------------------------------- {"PF_A2R10G10B10", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 10, 10, 10, 2, /* Masks and shifts */ 0x3FF00000, 0x000FFC00, 0x000003FF, 0xC0000000, 20, 10, 0, 30 }, //----------------------------------------------------------------------- {"PF_A2B10G10R10", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 10, 10, 10, 2, /* Masks and shifts */ 0x000003FF, 0x000FFC00, 0x3FF00000, 0xC0000000, 0, 10, 20, 30 }, //----------------------------------------------------------------------- {"PF_DXT1", /* Bytes per element */ 0, /* Flags */ PFF_COMPRESSED | PFF_HASALPHA, /* Component type and count */ PCT_BYTE, 3, // No alpha /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_DXT2", /* Bytes per element */ 0, /* Flags */ PFF_COMPRESSED | PFF_HASALPHA, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_DXT3", /* Bytes per element */ 0, /* Flags */ PFF_COMPRESSED | PFF_HASALPHA, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_DXT4", /* Bytes per element */ 0, /* Flags */ PFF_COMPRESSED | PFF_HASALPHA, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_DXT5", /* Bytes per element */ 0, /* Flags */ PFF_COMPRESSED | PFF_HASALPHA, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT16_RGB", /* Bytes per element */ 6, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT16, 3, /* rbits, gbits, bbits, abits */ 16, 16, 16, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT16_RGBA", /* Bytes per element */ 8, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT16, 4, /* rbits, gbits, bbits, abits */ 16, 16, 16, 16, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT32_RGB", /* Bytes per element */ 12, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT32, 3, /* rbits, gbits, bbits, abits */ 32, 32, 32, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT32_RGBA", /* Bytes per element */ 16, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT32, 4, /* rbits, gbits, bbits, abits */ 32, 32, 32, 32, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_X8R8G8B8", /* Bytes per element */ 4, /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 8, 8, 8, 0, /* Masks and shifts */ 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000, 16, 8, 0, 24 }, //----------------------------------------------------------------------- {"PF_X8B8G8R8", /* Bytes per element */ 4, /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 8, 8, 8, 0, /* Masks and shifts */ 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000, 0, 8, 16, 24 }, //----------------------------------------------------------------------- {"PF_R8G8B8A8", /* Bytes per element */ 4, /* Flags */ PFF_HASALPHA | PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 4, /* rbits, gbits, bbits, abits */ 8, 8, 8, 8, /* Masks and shifts */ 0xFF000000, 0x00FF0000, 0x0000FF00, 0x000000FF, 24, 16, 8, 0 }, //----------------------------------------------------------------------- {"PF_DEPTH", /* Bytes per element */ 4, /* Flags */ PFF_DEPTH, /* Component type and count */ PCT_FLOAT32, 1, // ? /* rbits, gbits, bbits, abits */ 0, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_SHORT_RGBA", /* Bytes per element */ 8, /* Flags */ PFF_HASALPHA, /* Component type and count */ PCT_SHORT, 4, /* rbits, gbits, bbits, abits */ 16, 16, 16, 16, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_R3G3B2", /* Bytes per element */ 1, /* Flags */ PFF_NATIVEENDIAN, /* Component type and count */ PCT_BYTE, 3, /* rbits, gbits, bbits, abits */ 3, 3, 2, 0, /* Masks and shifts */ 0xE0, 0x1C, 0x03, 0, 5, 2, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT16_R", /* Bytes per element */ 2, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT16, 1, /* rbits, gbits, bbits, abits */ 16, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, //----------------------------------------------------------------------- {"PF_FLOAT32_R", /* Bytes per element */ 4, /* Flags */ PFF_FLOAT, /* Component type and count */ PCT_FLOAT32, 1, /* rbits, gbits, bbits, abits */ 32, 0, 0, 0, /* Masks and shifts */ 0, 0, 0, 0, 0, 0, 0, 0 }, }; //----------------------------------------------------------------------- size_t PixelBox::getConsecutiveSize() const { return PixelUtil::getMemorySize(getWidth(), getHeight(), getDepth(), format); } PixelBox PixelBox::getSubVolume(const Box &def) const { if(PixelUtil::isCompressed(format)) { if(def.left == left && def.top == top && def.front == front && def.right == right && def.bottom == bottom && def.back == back) { // Entire buffer is being queried return *this; } OGRE_EXCEPT(Exception::ERR_INVALIDPARAMS, "Cannot return subvolume of compressed PixelBuffer", "PixelBox::getSubVolume"); } if(!contains(def)) OGRE_EXCEPT(Exception::ERR_INVALIDPARAMS, "Bounds out of range", "PixelBox::getSubVolume"); const size_t elemSize = PixelUtil::getNumElemBytes(format); // Calculate new data origin PixelBox rval(def, format, ((uint8*)data) + ((def.left-left)*elemSize) + ((def.top-top)*rowPitch*elemSize) + ((def.front-front)*slicePitch*elemSize) ); rval.rowPitch = rowPitch; rval.slicePitch = slicePitch; rval.format = format; return rval; } //----------------------------------------------------------------------- /** * Directly get the description record for provided pixel format. For debug builds, * this checks the bounds of fmt with an assertion. */ static inline const PixelFormatDescription &getDescriptionFor(const PixelFormat fmt) { const int ord = (int)fmt; assert(ord>=0 && ord 0; } //----------------------------------------------------------------------- bool PixelUtil::isFloatingPoint(PixelFormat format) { return (PixelUtil::getFlags(format) & PFF_FLOAT) > 0; } //----------------------------------------------------------------------- bool PixelUtil::isCompressed(PixelFormat format) { return (PixelUtil::getFlags(format) & PFF_COMPRESSED) > 0; } //----------------------------------------------------------------------- bool PixelUtil::isDepth(PixelFormat format) { return (PixelUtil::getFlags(format) & PFF_DEPTH) > 0; } //----------------------------------------------------------------------- bool PixelUtil::isNativeEndian(PixelFormat format) { return (PixelUtil::getFlags(format) & PFF_NATIVEENDIAN) > 0; } //----------------------------------------------------------------------- bool PixelUtil::isLuminance(PixelFormat format) { return (PixelUtil::getFlags(format) & PFF_LUMINANCE) > 0; } //----------------------------------------------------------------------- bool PixelUtil::isValidExtent(size_t width, size_t height, size_t depth, PixelFormat format) { if(isCompressed(format)) { switch(format) { case PF_DXT1: case PF_DXT2: case PF_DXT3: case PF_DXT4: case PF_DXT5: return ((width&3)==0 && (height&3)==0 && depth==1); default: return true; } } else { return true; } } //----------------------------------------------------------------------- void PixelUtil::getBitDepths(PixelFormat format, int rgba[4]) { const PixelFormatDescription &des = getDescriptionFor(format); rgba[0] = des.rbits; rgba[1] = des.gbits; rgba[2] = des.bbits; rgba[3] = des.abits; } //----------------------------------------------------------------------- void PixelUtil::getBitMasks(PixelFormat format, uint32 rgba[4]) { const PixelFormatDescription &des = getDescriptionFor(format); rgba[0] = des.rmask; rgba[1] = des.gmask; rgba[2] = des.bmask; rgba[3] = des.amask; } //----------------------------------------------------------------------- String PixelUtil::getFormatName(PixelFormat srcformat) { return getDescriptionFor(srcformat).name; } //----------------------------------------------------------------------- bool PixelUtil::isAccessible(PixelFormat srcformat) { unsigned int flags = getFlags(srcformat); return !((flags & PFF_COMPRESSED) || (flags & PFF_DEPTH)); } //----------------------------------------------------------------------- PixelComponentType PixelUtil::getComponentType(PixelFormat fmt) { const PixelFormatDescription &des = getDescriptionFor(fmt); return des.componentType; } //----------------------------------------------------------------------- size_t PixelUtil::getComponentCount(PixelFormat fmt) { const PixelFormatDescription &des = getDescriptionFor(fmt); return des.componentCount; } //----------------------------------------------------------------------- /************************************************************************* * Pixel packing/unpacking utilities */ void PixelUtil::packColour(const ColourValue &colour, const PixelFormat pf, const void* dest) { packColour(colour.r, colour.g, colour.b, colour.a, pf, dest); } //----------------------------------------------------------------------- void PixelUtil::packColour(const uint8 r, const uint8 g, const uint8 b, const uint8 a, const PixelFormat pf, const void* dest) { const PixelFormatDescription &des = getDescriptionFor(pf); if(des.flags & PFF_NATIVEENDIAN) { // Shortcut for integer formats packing unsigned int value = ((Bitwise::fixedToFixed(r, 8, des.rbits)<r, &colour->g, &colour->b, &colour->a, pf, src); } //----------------------------------------------------------------------- void PixelUtil::unpackColour(uint8 *r, uint8 *g, uint8 *b, uint8 *a, PixelFormat pf, const void* src) { const PixelFormatDescription &des = getDescriptionFor(pf); if(des.flags & PFF_NATIVEENDIAN) { // Shortcut for integer formats unpacking const unsigned int value = Bitwise::intRead(src, des.elemBytes); if(des.flags & PFF_LUMINANCE) { // Luminance format -- only rbits used *r = *g = *b = Bitwise::fixedToFixed( (value & des.rmask)>>des.rshift, des.rbits, 8); } else { *r = Bitwise::fixedToFixed((value & des.rmask)>>des.rshift, des.rbits, 8); *g = Bitwise::fixedToFixed((value & des.gmask)>>des.gshift, des.gbits, 8); *b = Bitwise::fixedToFixed((value & des.bmask)>>des.bshift, des.bbits, 8); } if(des.flags & PFF_HASALPHA) { *a = Bitwise::fixedToFixed((value & des.amask)>>des.ashift, des.abits, 8); } else { *a = 255; // No alpha, default a component to full } } else { // Do the operation with the more generic floating point float rr, gg, bb, aa; unpackColour(&rr,&gg,&bb,&aa, pf, src); *r = Bitwise::floatToFixed(rr, 8); *g = Bitwise::floatToFixed(gg, 8); *b = Bitwise::floatToFixed(bb, 8); *a = Bitwise::floatToFixed(aa, 8); } } //----------------------------------------------------------------------- void PixelUtil::unpackColour(float *r, float *g, float *b, float *a, PixelFormat pf, const void* src) { const PixelFormatDescription &des = getDescriptionFor(pf); if(des.flags & PFF_NATIVEENDIAN) { // Shortcut for integer formats unpacking const unsigned int value = Bitwise::intRead(src, des.elemBytes); if(des.flags & PFF_LUMINANCE) { // Luminance format -- only rbits used *r = *g = *b = Bitwise::fixedToFloat( (value & des.rmask)>>des.rshift, des.rbits); } else { *r = Bitwise::fixedToFloat((value & des.rmask)>>des.rshift, des.rbits); *g = Bitwise::fixedToFloat((value & des.gmask)>>des.gshift, des.gbits); *b = Bitwise::fixedToFloat((value & des.bmask)>>des.bshift, des.bbits); } if(des.flags & PFF_HASALPHA) { *a = Bitwise::fixedToFloat((value & des.amask)>>des.ashift, des.abits); } else { *a = 1.0f; // No alpha, default a component to full } } else { switch(pf) { case PF_FLOAT32_R: *r = *g = *b = ((float*)src)[0]; *a = 1.0f; break; case PF_FLOAT32_RGB: *r = ((float*)src)[0]; *g = ((float*)src)[1]; *b = ((float*)src)[2]; *a = 1.0f; break; case PF_FLOAT32_RGBA: *r = ((float*)src)[0]; *g = ((float*)src)[1]; *b = ((float*)src)[2]; *a = ((float*)src)[3]; break; case PF_FLOAT16_R: *r = *g = *b = Bitwise::halfToFloat(((uint16*)src)[0]); *a = 1.0f; break; case PF_FLOAT16_RGB: *r = Bitwise::halfToFloat(((uint16*)src)[0]); *g = Bitwise::halfToFloat(((uint16*)src)[1]); *b = Bitwise::halfToFloat(((uint16*)src)[2]); *a = 1.0f; break; case PF_FLOAT16_RGBA: *r = Bitwise::halfToFloat(((uint16*)src)[0]); *g = Bitwise::halfToFloat(((uint16*)src)[1]); *b = Bitwise::halfToFloat(((uint16*)src)[2]); *a = Bitwise::halfToFloat(((uint16*)src)[3]); break; case PF_SHORT_RGBA: *r = Bitwise::fixedToFloat(((uint16*)src)[0], 16); *g = Bitwise::fixedToFloat(((uint16*)src)[1], 16); *b = Bitwise::fixedToFloat(((uint16*)src)[2], 16); *a = Bitwise::fixedToFloat(((uint16*)src)[3], 16); break; case PF_BYTE_LA: *r = *g = *b = Bitwise::fixedToFloat(((uint8*)src)[0], 8); *a = Bitwise::fixedToFloat(((uint8*)src)[1], 8); break; default: // Not yet supported OGRE_EXCEPT(Exception::UNIMPLEMENTED_FEATURE, "unpack from "+getFormatName(pf)+" not implemented", "PixelUtil::unpackColour"); break; } } } //----------------------------------------------------------------------- /* Convert pixels from one format to another */ void PixelUtil::bulkPixelConversion(void *srcp, PixelFormat srcFormat, void *destp, PixelFormat dstFormat, unsigned int count) { PixelBox src(count, 1, 1, srcFormat, srcp), dst(count, 1, 1, dstFormat, destp); bulkPixelConversion(src, dst); } //----------------------------------------------------------------------- void PixelUtil::bulkPixelConversion(const PixelBox &src, const PixelBox &dst) { assert(src.getWidth() == dst.getWidth() && src.getHeight() == dst.getHeight() && src.getDepth() == dst.getDepth()); // Check for compressed formats, we don't support decompression, compression or recoding if(PixelUtil::isCompressed(src.format) || PixelUtil::isCompressed(dst.format)) { if(src.format == dst.format) { memcpy(dst.data, src.data, src.getConsecutiveSize()); return; } else { OGRE_EXCEPT(Exception::UNIMPLEMENTED_FEATURE, "This method can not be used to compress or decompress images", "PixelUtil::bulkPixelConversion"); } } // The easy case if(src.format == dst.format) { // Everything consecutive? if(src.isConsecutive() && dst.isConsecutive()) { memcpy(dst.data, src.data, src.getConsecutiveSize()); return; } uint8 *srcptr = static_cast(src.data); uint8 *dstptr = static_cast(dst.data); const size_t srcPixelSize = PixelUtil::getNumElemBytes(src.format); const size_t dstPixelSize = PixelUtil::getNumElemBytes(dst.format); // Calculate pitches+skips in bytes const size_t srcRowPitchBytes = src.rowPitch*srcPixelSize; //const size_t srcRowSkipBytes = src.getRowSkip()*srcPixelSize; const size_t srcSliceSkipBytes = src.getSliceSkip()*srcPixelSize; const size_t dstRowPitchBytes = dst.rowPitch*dstPixelSize; //const size_t dstRowSkipBytes = dst.getRowSkip()*dstPixelSize; const size_t dstSliceSkipBytes = dst.getSliceSkip()*dstPixelSize; // Otherwise, copy per row const size_t rowSize = src.getWidth()*srcPixelSize; for(size_t z=src.front; z= 1300 // Is there a specialized, inlined, conversion? if(doOptimizedConversion(src, dst)) { // If so, good return; } #endif uint8 *srcptr = static_cast(src.data); uint8 *dstptr = static_cast(dst.data); const size_t srcPixelSize = PixelUtil::getNumElemBytes(src.format); const size_t dstPixelSize = PixelUtil::getNumElemBytes(dst.format); // Calculate pitches+skips in bytes const size_t srcRowSkipBytes = src.getRowSkip()*srcPixelSize; const size_t srcSliceSkipBytes = src.getSliceSkip()*srcPixelSize; const size_t dstRowSkipBytes = dst.getRowSkip()*dstPixelSize; const size_t dstSliceSkipBytes = dst.getSliceSkip()*dstPixelSize; // The brute force fallback float r,g,b,a; for(size_t z=src.front; z