47 : pixels(width * height),
48 _width(width), _height(height)
85 pixels.resize(width * height);
98 static const Pixel black(0, 0, 0);
125 reinterpret_cast<const Bytef *>(
pixels.data()),
static const FrameBuffer dummy
Static "dummy" frame buffer.
#define UNSERIALIZE_CONTAINER(member)
Internal gem5 representation of a frame buffer.
void resize(unsigned width, unsigned height)
Resize the frame buffer.
unsigned length
Bytes per pixel when stored in memory (including padding)
void copyIn(const uint8_t *fb, const PixelConverter &conv)
Fill the frame buffer with pixel data from an external buffer of the same width and height as this fr...
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
unsigned _width
Width in pixels.
const Pixel & pixel(unsigned x, unsigned y) const
Get a pixel from an (x, y) coordinate.
void clear()
Fill the frame buffer with black pixels.
FrameBuffer()
Create an empty (0x0) frame buffer.
std::vector< Pixel > pixels
Frame buffer backing store.
unsigned area() const
Total number of pixels in frame buffer.
#define UNSERIALIZE_SCALAR(scalar)
uint32_t fromPixel(const Pixel &pixel) const
Convert a Pixel into a color word.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void copyOut(uint8_t *fb, const PixelConverter &conv) const
Store the contents of this frame buffer in an external buffer of the same width and height as this fr...
#define SERIALIZE_SCALAR(scalar)
#define SERIALIZE_CONTAINER(member)
std::ostream CheckpointOut
void fill(const Pixel &pixel)
Fill the frame buffer with a single pixel value.
Configurable RGB pixel converter.
Internal gem5 representation of a Pixel.
unsigned _height
Height in pixels.
unsigned width() const
Frame buffer width in pixels.
void serialize(CheckpointOut &cp) const override
Serialize an object.
unsigned height() const
Frame buffer height in pixels.
uint64_t getHash() const
Create a hash of the image that can be used for quick comparisons.