@@ -248,6 +248,10 @@ void Adafruit_GFX::writeFillRect(int16_t x, int16_t y, int16_t w, int16_t h,
248
248
/* !
249
249
@brief set the address window (memory area), overwrite in subclasses if
250
250
needed
251
+ @param x starting x coordinate
252
+ @param y starting y coordinate
253
+ @param w width in pixels
254
+ @param h height in pixels
251
255
*/
252
256
/* *************************************************************************/
253
257
void Adafruit_GFX::setAddrWindow (uint16_t x, uint16_t y, uint16_t w,
@@ -262,24 +266,15 @@ void Adafruit_GFX::setAddrWindow(uint16_t x, uint16_t y, uint16_t w,
262
266
/* !
263
267
@brief write len pixels of the given color, overwrite in subclasses if
264
268
needed
269
+ @param color 16-bit 5-6-5 color to write
270
+ @param len number of pixels to write
265
271
*/
266
272
/* *************************************************************************/
267
273
void Adafruit_GFX::writeColor (uint16_t color, uint32_t len) {
268
274
(void )color;
269
275
(void )len;
270
276
}
271
277
272
- /* *************************************************************************/
273
- /* !
274
- @brief write a buffer of pixels, overwrite in subclasses if needed
275
- */
276
- void Adafruit_GFX::writePixels (uint16_t *colors, uint32_t len, bool block,
277
- bool bigEndian) {
278
- (void )colors;
279
- (void )len;
280
- (void )block;
281
- (void )bigEndian;
282
- }
283
278
/* *************************************************************************/
284
279
/* !
285
280
@brief End a display-writing routine, overwrite in subclasses if
0 commit comments