Forked para SNOCC
Fork of RA8875 by
Diff: RA8875.cpp
- Revision:
- 87:ee2240581aa7
- Parent:
- 86:e86b355940f4
- Child:
- 89:04575562c961
--- a/RA8875.cpp Sat Jan 17 20:59:51 2015 +0000 +++ b/RA8875.cpp Mon Jan 19 13:32:56 2015 +0000 @@ -938,6 +938,16 @@ } +RetCode_t RA8875::pixel(point_t p, color_t color) +{ + return pixel(p.x, p.y, color); +} + +RetCode_t RA8875::pixel(point_t p) +{ + return pixel(p.x, p.y); +} + RetCode_t RA8875::pixel(loc_t x, loc_t y, color_t color) { RetCode_t ret;