@@ -328,7 +328,7 @@ class GFXcanvas1 : public Adafruit_GFX {
328
328
bool getRawPixel (int16_t x, int16_t y) const ;
329
329
void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
330
330
void drawFastRawHLine (int16_t x, int16_t y, int16_t w, uint16_t color);
331
- uint8_t *buffer; // protected ( no longer private) for subclass flexibility
331
+ uint8_t *buffer; // /< Raster data: no longer private, allow subclass access
332
332
333
333
private:
334
334
#ifdef __AVR__
@@ -359,7 +359,7 @@ class GFXcanvas8 : public Adafruit_GFX {
359
359
uint8_t getRawPixel (int16_t x, int16_t y) const ;
360
360
void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
361
361
void drawFastRawHLine (int16_t x, int16_t y, int16_t w, uint16_t color);
362
- uint8_t *buffer; // protected ( no longer private) for subclass flexibility
362
+ uint8_t *buffer; // /< Raster data: no longer private, allow subclass access
363
363
};
364
364
365
365
// / A GFX 16-bit canvas context for graphics
@@ -385,7 +385,7 @@ class GFXcanvas16 : public Adafruit_GFX {
385
385
uint16_t getRawPixel (int16_t x, int16_t y) const ;
386
386
void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
387
387
void drawFastRawHLine (int16_t x, int16_t y, int16_t w, uint16_t color);
388
- uint16_t *buffer; // protected ( no longer private) for subclass flexibility
388
+ uint16_t *buffer; // /< Raster data: no longer private, allow subclass access
389
389
};
390
390
391
391
#endif // _ADAFRUIT_GFX_H
0 commit comments