Doxy class members moved from private to protected

This commit is contained in:
Phillip Burgess 2023-01-16 15:18:35 -08:00
parent 740677a733
commit e122c3d20f

View File

@ -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