@@ -328,7 +328,7 @@ class GFXcanvas1 : public Adafruit_GFX {
328328 bool getRawPixel (int16_t x, int16_t y) const ;
329329 void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
330330 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
332332
333333private:
334334#ifdef __AVR__
@@ -359,7 +359,7 @@ class GFXcanvas8 : public Adafruit_GFX {
359359 uint8_t getRawPixel (int16_t x, int16_t y) const ;
360360 void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
361361 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
363363};
364364
365365// / A GFX 16-bit canvas context for graphics
@@ -385,7 +385,7 @@ class GFXcanvas16 : public Adafruit_GFX {
385385 uint16_t getRawPixel (int16_t x, int16_t y) const ;
386386 void drawFastRawVLine (int16_t x, int16_t y, int16_t h, uint16_t color);
387387 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
389389};
390390
391391#endif // _ADAFRUIT_GFX_H
0 commit comments