diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-04 18:36:00 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-04 18:37:42 +0200 |
commit | 3e747d769f63fde60f6095bd1ae7c651d4237f39 (patch) | |
tree | 92a5955413dac91972edf32b1824739038704720 /plugingui/pixelbuffer.cc | |
parent | 538abc6cd8f4a5996640ec9800815fbac5c34b26 (diff) |
Make Colour movabl;e and make Image contain a vector of Colour instead of raw char data.
Diffstat (limited to 'plugingui/pixelbuffer.cc')
-rw-r--r-- | plugingui/pixelbuffer.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugingui/pixelbuffer.cc b/plugingui/pixelbuffer.cc index f2fdf62..906e4d6 100644 --- a/plugingui/pixelbuffer.cc +++ b/plugingui/pixelbuffer.cc @@ -142,9 +142,10 @@ void PixelBufferAlpha::addPixel(size_t x, size_t y, buf[PX(3)] = (a + b) * 255; } -void PixelBufferAlpha::addPixel(size_t x, size_t y, Colour c) +void PixelBufferAlpha::addPixel(size_t x, size_t y, const Colour& c) { - addPixel(x, y, c.red * 255, c.green * 255, c.blue * 255, c.alpha * 255); + addPixel(x, y, + c.red() * 255, c.green() * 255, c.blue() * 255, c.alpha() * 255); } void PixelBufferAlpha::pixel(size_t x, size_t y, |