mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2024-10-03 18:18:46 -04:00
Doxy class members moved from private to protected
This commit is contained in:
parent
740677a733
commit
e122c3d20f
@ -328,7 +328,7 @@ 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
|
||||
uint8_t *buffer; ///< Raster data: no longer private, allow subclass access
|
||||
|
||||
private:
|
||||
#ifdef __AVR__
|
||||
@ -359,7 +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);
|
||||
uint8_t *buffer; // protected (no longer private) for subclass flexibility
|
||||
uint8_t *buffer; ///< Raster data: no longer private, allow subclass access
|
||||
};
|
||||
|
||||
/// A GFX 16-bit canvas context for graphics
|
||||
@ -385,7 +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);
|
||||
uint16_t *buffer; // protected (no longer private) for subclass flexibility
|
||||
uint16_t *buffer; ///< Raster data: no longer private, allow subclass access
|
||||
};
|
||||
|
||||
#endif // _ADAFRUIT_GFX_H
|
||||
|
Loading…
Reference in New Issue
Block a user