Searched refs:Pixel (Results 1 - 10 of 10) sorted by relevance

/gem5/src/base/
H A Dpixel.hh54 * Internal gem5 representation of a Pixel.
56 struct Pixel struct
58 Pixel() function in struct:Pixel
61 Pixel(uint8_t _red, uint8_t _green, uint8_t _blue) function in struct:Pixel
71 operator==(const Pixel &lhs, const Pixel &rhs)
83 * internal Pixel representation. The class assumes that pixels are
134 /** Get the Pixel representation of a color word. */
135 Pixel toPixel(uint32_t word) const {
136 return Pixel(ch_
[all...]
H A Dframebuffer.hh107 * @param pixel Pixel value to fill with.
109 void fill(const Pixel &pixel);
120 * @param conv Pixel conversion helper
128 * @param conv Pixel conversion helper
139 * @param conv Pixel conversion helper
147 * @param conv Pixel conversion helper
159 const Pixel &pixel(unsigned x, unsigned y) const {
172 Pixel &pixel(unsigned x, unsigned y) {
194 std::vector<Pixel> pixels;
H A Dframebuffer.cc91 FrameBuffer::fill(const Pixel &pixel)
100 static const Pixel black(0, 0, 0);
128 area() * sizeof(Pixel));
H A Dpngwriter.hh80 /** Png Pixel type: not containing padding */
82 PngPixel24 &operator=(const Pixel &rhs) {
H A Dpixel.test.cc44 static Pixel pixel_red(0xff, 0x00, 0x00);
45 static Pixel pixel_green(0x00, 0xff, 0x00);
46 static Pixel pixel_blue(0x00, 0x00, 0xff);
H A Dbmpwriter.hh111 BmpPixel32 &operator=(const Pixel &rhs) {
/gem5/src/dev/
H A Dpixelpump.cc224 Pixel pixel(0, 0, 0);
225 const Pixel underrun_pixel(0, 0, 0);
288 Pixel pixel(0, 0, 0);
H A Dpixelpump.hh138 * Pixel order within a scan line:
204 virtual bool nextPixel(Pixel &p) = 0;
/gem5/src/dev/arm/
H A Dhdlcd.hh252 PixelFormatReg pixel_format; /**< Pixel format register */
271 public: // Pixel pump callbacks
272 bool pxlNext(Pixel &p);
323 protected: // Pixel output
333 bool nextPixel(Pixel &p) override { return parent.pxlNext(p); }
H A Dhdlcd.cc524 HDLcd::pxlNext(Pixel &p)

Completed in 16 milliseconds