|

楼主 |
发表于 2015-10-9 15:37:14
|
显示全部楼层
/*********************************************************************
*
* LCD_L0_FillRect
*/
void LCD_L0_FillRect(int x0, int y0, int x1, int y1) {
for (; y0 <= y1; y0++) {
RA8875_DrawHLine(x0, y0, x1,LCD_COLORINDEX);//现在的
}
//μè′y2ù×÷?áê?
// RA8875_FillRect(x0, y0, x1, y1, LCD_COLORINDEX);//之前的
}
谢谢啦,是底层问题 |
|