gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pixel.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __BASE_PIXEL_HH__
39 #define __BASE_PIXEL_HH__
40 
41 #include <cmath>
42 #include <cstdint>
43 #include <string>
44 #include <vector>
45 
46 #include "base/compiler.hh"
47 #include "base/cprintf.hh"
48 #include "base/str.hh"
49 #include "base/types.hh"
50 #include "sim/byteswap.hh"
51 
55 struct Pixel
56 {
58  : red(0), green(0), blue(0), padding(0) {}
59 
60  Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
61  : red(_red), green(_green), blue(_blue), padding(0) {}
62 
63  uint8_t red;
64  uint8_t green;
65  uint8_t blue;
66  uint8_t padding;
67 };
68 
69 inline bool
70 operator==(const Pixel &lhs, const Pixel &rhs)
71 {
72  return lhs.red == rhs.red &&
73  lhs.green == rhs.green &&
74  lhs.blue == rhs.blue &&
75  lhs.padding == rhs.padding;
76 }
77 
89 {
90  public:
94  struct Channel {
99  Channel(unsigned offset, unsigned width);
100 
105  uint8_t toPixel(uint32_t word) const {
106  return round(((word >> offset) & mask) * factor);
107  }
108 
113  uint32_t fromPixel(uint8_t ch) const {
114  return (static_cast<uint8_t>(round(ch / factor)) & mask) << offset;
115  }
116 
118  unsigned offset;
120  unsigned mask;
125  float factor;
126  };
127 
128  PixelConverter(unsigned length,
129  unsigned ro, unsigned go, unsigned bo,
130  unsigned rw, unsigned gw, unsigned bw,
131  ByteOrder byte_order = ByteOrder::little);
132 
134  Pixel toPixel(uint32_t word) const {
135  return Pixel(ch_r.toPixel(word),
136  ch_g.toPixel(word),
137  ch_b.toPixel(word));
138  }
139 
141  Pixel toPixel(const uint8_t *rfb) const {
142  return toPixel(readWord(rfb));
143  }
144 
146  uint32_t fromPixel(const Pixel &pixel) const {
147  return ch_r.fromPixel(pixel.red) |
148  ch_g.fromPixel(pixel.green) |
149  ch_b.fromPixel(pixel.blue);
150  }
151 
156  void fromPixel(uint8_t *rfb, const Pixel &pixel) const {
157  writeWord(rfb, fromPixel(pixel));
158  }
159 
170  uint32_t readWord(const uint8_t *p) const;
177  void writeWord(uint8_t *p, uint32_t word) const;
178 
180  unsigned length;
186  unsigned depth;
188  ByteOrder byte_order;
189 
196 
202  static const PixelConverter rgb565_le;
203 
209  static const PixelConverter rgb565_be;
210 };
211 
212 inline bool
213 to_number(const std::string &value, Pixel &retval)
214 {
215  uint32_t num;
216  if (!to_number(value, num))
217  return false;
218 
219  retval = PixelConverter::rgba8888_le.toPixel(num);
220  return true;
221 }
222 
223 inline std::ostream &
224 operator<<(std::ostream &os, const Pixel &pxl)
225 {
226  os << csprintf("%#.08x", PixelConverter::rgba8888_le.fromPixel(pxl));
227  return os;
228 }
229 
230 #endif // __BASE_PIXEL_HH__
PixelConverter::Channel::fromPixel
uint32_t fromPixel(uint8_t ch) const
Convert an 8-bit representation of a color into an external format.
Definition: pixel.hh:113
PixelConverter::Channel::mask
unsigned mask
Bit mask (after shifting)
Definition: pixel.hh:120
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
sc_dt::word
unsigned int word
Definition: scfx_mant.hh:96
Pixel::blue
uint8_t blue
Definition: pixel.hh:65
PixelConverter::Channel::factor
float factor
Scaling factor when converting to the full range of an 8-bit color channel.
Definition: pixel.hh:125
to_number
bool to_number(const std::string &value, Pixel &retval)
Definition: pixel.hh:213
PixelConverter::fromPixel
void fromPixel(uint8_t *rfb, const Pixel &pixel) const
Convert a pixel into a color word and store the resulting word in memory.
Definition: pixel.hh:156
PixelConverter
Configurable RGB pixel converter.
Definition: pixel.hh:88
PixelConverter::rgb565_be
static const PixelConverter rgb565_be
Predefined 16-bit RGB565 (red in least significant bits, big endian) conversion helper.
Definition: pixel.hh:209
ArmISA::width
Bitfield< 4 > width
Definition: miscregs_types.hh:68
Pixel::red
uint8_t red
Definition: pixel.hh:63
PixelConverter::Channel::Channel
Channel(unsigned offset, unsigned width)
Definition: pixel.cc:65
PixelConverter::Channel::toPixel
uint8_t toPixel(uint32_t word) const
Get the value of a single color channel represented as an 8-bit number.
Definition: pixel.hh:105
PowerISA::bo
Bitfield< 25, 21 > bo
Definition: types.hh:62
PixelConverter::PixelConverter
PixelConverter(unsigned length, unsigned ro, unsigned go, unsigned bo, unsigned rw, unsigned gw, unsigned bw, ByteOrder byte_order=ByteOrder::little)
Definition: pixel.cc:51
PixelConverter::rgba8888_le
static const PixelConverter rgba8888_le
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, little endian) conversion helpe...
Definition: pixel.hh:199
PixelConverter::ch_g
Channel ch_g
Green channel conversion helper.
Definition: pixel.hh:193
PixelConverter::byte_order
ByteOrder byte_order
Byte order when stored to memory.
Definition: pixel.hh:188
PixelConverter::Channel
Color channel conversion and scaling helper class.
Definition: pixel.hh:94
PixelConverter::toPixel
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
Definition: pixel.hh:134
str.hh
Pixel::Pixel
Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
Definition: pixel.hh:60
PixelConverter::writeWord
void writeWord(uint8_t *p, uint32_t word) const
Write a word of a given length and endianness to memory.
Definition: pixel.cc:89
PixelConverter::length
unsigned length
Bytes per pixel when stored in memory (including padding)
Definition: pixel.hh:180
PixelConverter::depth
unsigned depth
Number of bits used to represent one pixel value (excluding padding).
Definition: pixel.hh:186
PixelConverter::rgba8888_be
static const PixelConverter rgba8888_be
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, big endian) conversion helper.
Definition: pixel.hh:206
cprintf.hh
compiler.hh
Pixel
Internal gem5 representation of a Pixel.
Definition: pixel.hh:55
PixelConverter::ch_b
Channel ch_b
Blue channel conversion helper.
Definition: pixel.hh:195
operator==
bool operator==(const Pixel &lhs, const Pixel &rhs)
Definition: pixel.hh:70
PixelConverter::rgb565_le
static const PixelConverter rgb565_le
Predefined 16-bit RGB565 (red in least significant bits, little endian) conversion helper.
Definition: pixel.hh:202
operator<<
std::ostream & operator<<(std::ostream &os, const Pixel &pxl)
Definition: pixel.hh:224
PixelConverter::Channel::offset
unsigned offset
Offset in bits.
Definition: pixel.hh:118
PixelConverter::ch_r
Channel ch_r
Red channel conversion helper.
Definition: pixel.hh:191
Pixel::Pixel
Pixel()
Definition: pixel.hh:57
PixelConverter::readWord
uint32_t readWord(const uint8_t *p) const
Read a word of a given length and endianness from memory.
Definition: pixel.cc:73
types.hh
Pixel::padding
uint8_t padding
Definition: pixel.hh:66
ArmISA::rw
Bitfield< 31 > rw
Definition: miscregs_types.hh:249
PixelConverter::toPixel
Pixel toPixel(const uint8_t *rfb) const
Get a Pixel representation by reading a word from memory.
Definition: pixel.hh:141
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Pixel::green
uint8_t green
Definition: pixel.hh:64
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
byteswap.hh
PixelConverter::fromPixel
uint32_t fromPixel(const Pixel &pixel) const
Convert a Pixel into a color word.
Definition: pixel.hh:146

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17