Represents a 32-bit INTERNAL pixel with premultiplied alpha, and can perform compositing operations with it. More...
#include <juce_PixelFormats.h>
Classes | |
struct | Components |
Public Types | |
enum | { indexA = 3, indexR = 0, indexG = 1, indexB = 2 } |
The indexes of the different components in the byte layout of this type of colour. More... | |
Public Member Functions | |
PixelARGB () noexcept=default | |
Creates a pixel without defining its colour. More... | |
PixelARGB (uint8 a, uint8 r, uint8 g, uint8 b) noexcept | |
template<class Pixel > | |
forcedinline void | blend (const Pixel &src) noexcept |
Blends another pixel onto this one. More... | |
template<class Pixel > | |
forcedinline void | blend (const Pixel &src, uint32 extraAlpha) noexcept |
Blends another pixel onto this one, applying an extra multiplier to its opacity. More... | |
forcedinline void | blend (PixelRGB src) noexcept |
Blends another pixel onto this one. More... | |
forcedinline void | desaturate () noexcept |
forcedinline uint8 | getAlpha () const noexcept |
forcedinline uint8 | getBlue () const noexcept |
forcedinline uint32 | getEvenBytes () const noexcept |
Return channels with an even index and insert zero bytes between them. More... | |
forcedinline uint8 | getGreen () const noexcept |
forcedinline uint32 | getInARGBMaskOrder () const noexcept |
Returns a uint32 which will be in argb order as if constructed with the following mask operation ((alpha << 24) | (red << 16) | (green << 8) | blue). More... | |
uint32 | getInARGBMemoryOrder () const noexcept |
Returns a uint32 which when written to memory, will be in the order a, r, g, b. More... | |
forcedinline uint32 | getNativeARGB () const noexcept |
Returns a uint32 which represents the pixel in a platform dependent format. More... | |
forcedinline uint32 | getOddBytes () const noexcept |
Return channels with an odd index and insert zero bytes between them. More... | |
forcedinline uint8 | getRed () const noexcept |
PixelARGB | getUnpremultiplied () const noexcept |
forcedinline void | multiplyAlpha (float multiplier) noexcept |
forcedinline void | multiplyAlpha (int multiplier) noexcept |
Multiplies the colour's alpha value with another one. More... | |
forcedinline void | premultiply () noexcept |
Premultiplies the pixel's RGB values by its alpha. More... | |
template<class Pixel > | |
forcedinline void | set (const Pixel &src) noexcept |
Copies another pixel colour over this one. More... | |
forcedinline void | setAlpha (uint8 newAlpha) noexcept |
Replaces the colour's alpha value with another one. More... | |
void | setARGB (uint8 a, uint8 r, uint8 g, uint8 b) noexcept |
Sets the pixel's colour from individual components. More... | |
template<class Pixel > | |
forcedinline void | tween (const Pixel &src, uint32 amount) noexcept |
Blends another pixel with this one, creating a colour that is somewhere between the two, as specified by the amount. More... | |
forcedinline void | unpremultiply () noexcept |
Unpremultiplies the pixel's RGB values. More... | |
Private Member Functions | |
PixelARGB (uint32 internalValue) noexcept | |
Private Attributes | |
union { | |
Components components | |
uint32 internal | |
}; | |
struct juce::PixelARGB::Components | JUCE_PACKED |
Represents a 32-bit INTERNAL pixel with premultiplied alpha, and can perform compositing operations with it.
This is used internally by the imaging classes.
@tags{Graphics}
anonymous enum |
|
defaultnoexcept |
Creates a pixel without defining its colour.
References juce::gl::a, juce::gl::b, juce::gl::components, juce::gl::g, and juce::gl::r.
|
inlineprivatenoexcept |
|
inlinenoexcept |
Blends another pixel onto this one.
This takes into account the opacity of the pixel being overlaid, and blends it accordingly.
References juce::gl::alpha, juce::clampPixelComponents(), juce::maskPixelComponents(), and juce::gl::src.
|
inlinenoexcept |
Blends another pixel onto this one, applying an extra multiplier to its opacity.
The opacity of the pixel being overlaid is scaled by the extraAlpha factor before being used, so this can blend semi-transparently from a PixelRGB argument.
References juce::gl::alpha, juce::clampPixelComponents(), juce::maskPixelComponents(), and juce::gl::src.
|
noexcept |
Blends another pixel onto this one.
This takes into account the opacity of the pixel being overlaid, and blends it accordingly.
References juce::gl::src.
|
inlinenoexcept |
References juce::gl::components, and int().
|
inlinenoexcept |
References juce::gl::components.
Referenced by juce::Colour::getAlpha().
|
inlinenoexcept |
References juce::gl::components.
Referenced by juce::Colour::getBlue().
|
inlinenoexcept |
Return channels with an even index and insert zero bytes between them.
This is useful for blending operations. The exact channels which are returned is platform dependent.
|
inlinenoexcept |
References juce::gl::components.
Referenced by juce::Colour::getGreen().
|
inlinenoexcept |
Returns a uint32 which will be in argb order as if constructed with the following mask operation ((alpha << 24) | (red << 16) | (green << 8) | blue).
References juce::gl::components.
|
inlinenoexcept |
Returns a uint32 which when written to memory, will be in the order a, r, g, b.
In other words, if the return-value is read as a uint8 array then the elements will be in the order of a, r, g, b
References juce::gl::components.
|
inlinenoexcept |
Returns a uint32 which represents the pixel in a platform dependent format.
|
inlinenoexcept |
Return channels with an odd index and insert zero bytes between them.
This is useful for blending operations. The exact channels which are returned is platform dependent.
|
inlinenoexcept |
References juce::gl::components.
Referenced by juce::Colour::getRed().
|
inlinenoexcept |
References juce::gl::p.
|
inlinenoexcept |
References juce::gl::f.
|
inlinenoexcept |
Multiplies the colour's alpha value with another one.
|
inlinenoexcept |
Premultiplies the pixel's RGB values by its alpha.
References juce::gl::alpha, and juce::gl::components.
|
inlinenoexcept |
Copies another pixel colour over this one.
This doesn't blend it - this colour is simply replaced by the other one.
References juce::gl::src.
|
inlinenoexcept |
Replaces the colour's alpha value with another one.
References juce::gl::components.
Sets the pixel's colour from individual components.
References juce::gl::a, juce::gl::b, juce::gl::components, juce::gl::g, and juce::gl::r.
|
inlinenoexcept |
Blends another pixel with this one, creating a colour that is somewhere between the two, as specified by the amount.
References juce::gl::src.
|
inlinenoexcept |
Unpremultiplies the pixel's RGB values.
References juce::gl::alpha, juce::gl::components, and juce::jmin().
union { ... } |
Components juce::PixelARGB::components |
uint32 juce::PixelARGB::internal |
|
private |