Skip to content

Commit 9530e47

Browse files
author
Kirk
committedMar 23, 2022
formatting' qwiic_grbuffer.cpp
' '
·
v1.0.13v1.0.2
1 parent aba8ee9 commit 9530e47

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/qwiic_grbuffer.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,6 @@ void QwGrBufferDevice::draw_circle_filled(uint8_t x0, uint8_t y0, uint8_t radius
531531
void QwGrBufferDevice::bitmap(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1,
532532
uint8_t *pBitmap, uint8_t bmp_width, uint8_t bmp_height)
533533
{
534-
535534
(*_idraw.draw_bitmap)(this, x0, y0, x1, y1, pBitmap, bmp_width, bmp_height);
536535
}
537536

@@ -540,8 +539,8 @@ void QwGrBufferDevice::bitmap(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1,
540539
//
541540
// Draw a bitmap on the screen
542541

543-
void QwGrBufferDevice::bitmap(uint8_t x0, uint8_t y0, uint8_t *pBitmap, uint8_t bmp_width, uint8_t bmp_height ){
544-
542+
void QwGrBufferDevice::bitmap(uint8_t x0, uint8_t y0, uint8_t *pBitmap, uint8_t bmp_width, uint8_t bmp_height )
543+
{
545544

546545
(*_idraw.draw_bitmap)(this, x0, y0, bmp_width, bmp_height, pBitmap, bmp_width, bmp_height);
547546
}

0 commit comments

Comments
 (0)
Please sign in to comment.