OGRE 14.3
Object-Oriented Graphics Rendering Engine
|
Some utility functions for packing and unpacking pixel data. More...
#include <OgrePixelFormat.h>
Static Public Member Functions | |
static void | bulkPixelConversion (const PixelBox &src, const PixelBox &dst) |
Convert pixels from one format to another. | |
static void | bulkPixelConversion (void *src, PixelFormat srcFormat, void *dst, PixelFormat dstFormat, unsigned int count) |
Convert consecutive pixels from one format to another. | |
static void | bulkPixelVerticalFlip (const PixelBox &box) |
Flips pixels inplace in vertical direction. | |
static void | getBitDepths (PixelFormat format, int rgba[4]) |
Gives the number of bits (RGBA) for a format. | |
static void | getBitMasks (PixelFormat format, uint64 rgba[4]) |
Gives the masks for the R, G, B and A component. | |
static void | getBitShifts (PixelFormat format, unsigned char rgba[4]) |
Gives the bit shifts for R, G, B and A component. | |
static uint8 | getComponentCount (PixelFormat fmt) |
Returns the component count for a certain pixel format. | |
static PixelComponentType | getComponentType (PixelFormat fmt) |
Returns the component type for a certain pixel format. | |
static unsigned int | getFlags (PixelFormat format) |
Returns the property flags for this pixel format. | |
static PixelFormat | getFormatForBitDepths (PixelFormat fmt, ushort integerBits, ushort floatBits) |
Returns the similar format but according with given bit depths. | |
static PixelFormat | getFormatFromName (const String &name, bool accessibleOnly=false, bool caseSensitive=false) |
Gets the format from given name. | |
static const String & | getFormatName (PixelFormat srcformat) |
Gets the name of an image format. | |
static size_t | getMemorySize (uint32 width, uint32 height, uint32 depth, PixelFormat format) |
Returns the size in memory of a region with the given extents and pixel format with consecutive memory layout. | |
static uint8 | getNumElemBits (PixelFormat format) |
Returns the size in bits of an element of the given pixel format. | |
static uint8 | getNumElemBytes (PixelFormat format) |
Returns the size in bytes of an element of the given pixel format. | |
static bool | hasAlpha (PixelFormat format) |
Shortcut method to determine if the format has an alpha component. | |
static bool | isAccessible (PixelFormat srcformat) |
Returns whether the format can be packed or unpacked with the packColour() and unpackColour() functions. | |
static bool | isCompressed (PixelFormat format) |
Shortcut method to determine if the format is compressed. | |
static bool | isDepth (PixelFormat format) |
Shortcut method to determine if the format is a depth format. | |
static bool | isFloatingPoint (PixelFormat format) |
Shortcut method to determine if the format is floating point. | |
static bool | isInteger (PixelFormat format) |
Shortcut method to determine if the format is integer. | |
static bool | isLuminance (PixelFormat format) |
Shortcut method to determine if the format is a luminance format. | |
static bool | isNativeEndian (PixelFormat format) |
Shortcut method to determine if the format is in native endian format. | |
static void | packColour (const ColourValue &colour, const PixelFormat pf, void *dest) |
Pack a colour value to memory. | |
static void | packColour (const float r, const float g, const float b, const float a, const PixelFormat pf, void *dest) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
static void | packColour (const uint8 r, const uint8 g, const uint8 b, const uint8 a, const PixelFormat pf, void *dest) |
Pack a colour value to memory. | |
static void | unpackColour (ColourValue &colour, PixelFormat pf, const void *src) |
Unpack a colour value from memory. | |
static void | unpackColour (ColourValue *colour, PixelFormat pf, const void *src) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
static void | unpackColour (float *r, float *g, float *b, float *a, PixelFormat pf, const void *src) |
Unpack a colour value from memory. | |
static void | unpackColour (uint8 *r, uint8 *g, uint8 *b, uint8 *a, PixelFormat pf, const void *src) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
Some utility functions for packing and unpacking pixel data.
|
static |
Returns the size in bytes of an element of the given pixel format.
Passing PF_UNKNOWN will result in returning a size of 0 bytes.
Referenced by Python.Numpy::view().
|
static |
Returns the size in bits of an element of the given pixel format.
Passing PF_UNKNOWN will result in returning a size of 0 bits.
|
static |
Returns the size in memory of a region with the given extents and pixel format with consecutive memory layout.
width | The width of the area |
height | The height of the area |
depth | The depth of the area |
format | The format of the area |
In case that the format is non-compressed, this simply returns width * height * depth * PixelUtil::getNumElemBytes(format). In the compressed case, this does serious magic.
|
static |
Returns the property flags for this pixel format.
This replaces the separate functions for formatHasAlpha, formatIsFloat, ...
|
static |
Shortcut method to determine if the format has an alpha component.
|
static |
Shortcut method to determine if the format is floating point.
|
static |
Shortcut method to determine if the format is integer.
|
static |
Shortcut method to determine if the format is compressed.
|
static |
Shortcut method to determine if the format is a depth format.
|
static |
Shortcut method to determine if the format is in native endian format.
|
static |
Shortcut method to determine if the format is a luminance format.
|
static |
Gives the number of bits (RGBA) for a format.
See remarks.
|
static |
Gives the masks for the R, G, B and A component.
|
static |
Gives the bit shifts for R, G, B and A component.
|
static |
Gets the name of an image format.
Referenced by Ogre::to_string().
|
static |
Returns whether the format can be packed or unpacked with the packColour() and unpackColour() functions.
This is generally not true for compressed formats as they are special. It can only be true for formats with a fixed element size.
|
static |
Returns the component type for a certain pixel format.
Returns PCT_BYTE in case there is no clear component type like with compressed formats. This is one of PCT_BYTE, PCT_SHORT, PCT_FLOAT16, PCT_FLOAT32.
|
static |
Returns the component count for a certain pixel format.
Returns 3(no alpha) or 4 (has alpha) in case there is no clear component type like with compressed formats.
|
static |
Gets the format from given name.
name | The string of format name |
accessibleOnly | If true, non-accessible format will treat as invalid format, otherwise, all supported format are valid. |
caseSensitive | Should be set true if string match should use case sensitivity. |
|
static |
Returns the similar format but according with given bit depths.
fmt | The original format. |
integerBits | Preferred bit depth (pixel bits) for integer pixel format. Available values: 0, 16 and 32, where 0 (the default) means as it is. |
floatBits | Preferred bit depth (channel bits) for float pixel format. Available values: 0, 16 and 32, where 0 (the default) means as it is. |
|
inlinestatic |
Pack a colour value to memory.
colour | The colour |
pf | Pixelformat in which to write the colour |
dest | Destination memory location |
References Ogre::ColourValue::a, Ogre::ColourValue::b, Ogre::ColourValue::g, and Ogre::ColourValue::r.
|
static |
Pack a colour value to memory.
r,g,b,a | The four colour components, range 0.0f to 1.0f (an exception to this case exists for floating point pixel formats, which don't clamp to 0.0f..1.0f) |
pf | Pixelformat in which to write the colour |
dest | Destination memory location |
|
static |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
inlinestatic |
Unpack a colour value from memory.
colour | The colour is returned here |
pf | Pixelformat in which to read the colour |
src | Source memory location |
References Ogre::ColourValue::a, Ogre::ColourValue::b, Ogre::ColourValue::g, and Ogre::ColourValue::r.
|
inlinestatic |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
References Ogre::ColourValue::a, Ogre::ColourValue::b, Ogre::ColourValue::g, and Ogre::ColourValue::r.
|
static |
Unpack a colour value from memory.
r,g,b,a | The four colour channels are returned here |
pf | Pixelformat in which to read the colour |
src | Source memory location |
|
static |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
inlinestatic |
Convert consecutive pixels from one format to another.
No dithering or filtering is being done. Converting from RGB to luminance takes the R channel. In case the source and destination format match, just a copy is done.
src | Pointer to source region |
srcFormat | Pixel format of source region |
dst | Pointer to destination region |
dstFormat | Pixel format of destination region |
count | The number of pixels to convert |
|
static |
Convert pixels from one format to another.
No dithering or filtering is being done. Converting from RGB to luminance takes the R channel.
src | PixelBox containing the source pixels, pitches and format |
dst | PixelBox containing the destination pixels, pitches and format |
Flips pixels inplace in vertical direction.
box | PixelBox containing pixels, pitches and format |