diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-25 21:52:54 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-06-25 21:52:54 +0200 |
commit | 82d929736a6188583fe3283b8fa2ce776f3cca21 (patch) | |
tree | 1a894c5a603415086db3e3cdbb9b8d15fabc94a5 /glcddrivers/image.h | |
parent | d7b7ae09a995d8ceab70a9d7904a7b9e25beba00 (diff) | |
download | graphlcd-base-82d929736a6188583fe3283b8fa2ce776f3cca21.tar.gz graphlcd-base-82d929736a6188583fe3283b8fa2ce776f3cca21.tar.bz2 |
adapt all drivers to support SetPixel() with 32bit colours; Set8Pixels() is no longer virtual (generic implementation in base class)
Diffstat (limited to 'glcddrivers/image.h')
-rw-r--r-- | glcddrivers/image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcddrivers/image.h b/glcddrivers/image.h index 75a2f33..972a38e 100644 --- a/glcddrivers/image.h +++ b/glcddrivers/image.h @@ -44,7 +44,7 @@ public: virtual void Clear(); virtual void SetPixel(int x, int y, uint32_t data); - virtual void Set8Pixels(int x, int y, unsigned char data); + //virtual void Set8Pixels(int x, int y, unsigned char data); virtual void Refresh(bool refreshAll = false); }; |