38 #ifndef __BASE_PIXEL_HH__ 39 #define __BASE_PIXEL_HH__ 59 Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
71 return lhs.
red == rhs.
red &&
105 return round(((word >> offset) &
mask) * factor);
113 return (static_cast<uint8_t>(round(ch / factor)) &
mask) <<
offset;
128 unsigned ro,
unsigned go,
unsigned bo,
129 unsigned rw,
unsigned gw,
unsigned bw,
134 return Pixel(ch_r.toPixel(word),
141 return toPixel(readWord(rfb));
146 return ch_r.fromPixel(pixel.
red) |
147 ch_g.fromPixel(pixel.
green) |
148 ch_b.fromPixel(pixel.
blue);
156 writeWord(rfb, fromPixel(pixel));
169 uint32_t readWord(
const uint8_t *
p)
const;
176 void writeWord(uint8_t *p, uint32_t
word)
const;
222 inline std::ostream &
229 #endif // __BASE_PIXEL_HH__
Channel ch_g
Green channel conversion helper.
unsigned length
Bytes per pixel when stored in memory (including padding)
uint8_t toPixel(uint32_t word) const
Get the value of a single color channel represented as an 8-bit number.
float factor
Scaling factor when converting to the full range of an 8-bit color channel.
std::ostream & operator<<(std::ostream &os, const Pixel &pxl)
bool operator==(const Pixel &lhs, const Pixel &rhs)
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
Channel ch_b
Blue channel conversion helper.
unsigned mask
Bit mask (after shifting)
static const PixelConverter rgb565_be
Predefined 16-bit RGB565 (red in least significant bits, big endian) conversion helper.
Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
uint32_t fromPixel(uint8_t ch) const
Convert an 8-bit representation of a color into an external format.
unsigned depth
Number of bits used to represent one pixel value (excluding padding).
void fromPixel(uint8_t *rfb, const Pixel &pixel) const
Convert a pixel into a color word and store the resulting word in memory.
unsigned offset
Offset in bits.
ByteOrder byte_order
Byte order when stored to memory.
std::string csprintf(const char *format, const Args &...args)
static const PixelConverter rgba8888_le
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, little endian) conversion helpe...
Channel ch_r
Red channel conversion helper.
uint32_t fromPixel(const Pixel &pixel) const
Convert a Pixel into a color word.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
bool to_number(const std::string &value, Pixel &retval)
Pixel toPixel(const uint8_t *rfb) const
Get a Pixel representation by reading a word from memory.
static const PixelConverter rgb565_le
Predefined 16-bit RGB565 (red in least significant bits, little endian) conversion helper...
Color channel conversion and scaling helper class.
Configurable RGB pixel converter.
Internal gem5 representation of a Pixel.
static const PixelConverter rgba8888_be
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, big endian) conversion helper...