Make canvas buffers protected instead of private members

A use case came up where it was helpful to be able to alter the buffer pointer in a subclass. This is esoteric and should be used with care.
This commit is contained in:
Phillip Burgess 2023-01-16 15:02:36 -08:00
parent 91d916deeb
commit 740677a733
2 changed files with 4 additions and 9 deletions

View File

@ -328,10 +328,9 @@ protected:
bool getRawPixel(int16_t x, int16_t y) const;
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
uint8_t *buffer; // protected (no longer private) for subclass flexibility
private:
uint8_t *buffer;
#ifdef __AVR__
// Bitmask tables of 0x80>>X and ~(0x80>>X), because X>>Y is slow on AVR
static const uint8_t PROGMEM GFXsetBit[], GFXclrBit[];
@ -360,9 +359,7 @@ protected:
uint8_t getRawPixel(int16_t x, int16_t y) const;
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
private:
uint8_t *buffer;
uint8_t *buffer; // protected (no longer private) for subclass flexibility
};
/// A GFX 16-bit canvas context for graphics
@ -388,9 +385,7 @@ protected:
uint16_t getRawPixel(int16_t x, int16_t y) const;
void drawFastRawVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
void drawFastRawHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
private:
uint16_t *buffer;
uint16_t *buffer; // protected (no longer private) for subclass flexibility
};
#endif // _ADAFRUIT_GFX_H

View File

@ -1,5 +1,5 @@
name=Adafruit GFX Library
version=1.11.3
version=1.11.4
author=Adafruit
maintainer=Adafruit <info@adafruit.com>
sentence=Adafruit GFX graphics core library, this is the 'core' class that all our other graphics libraries derive from.