gui_fillrect.c
来自「uCGUI」· C语言 代码 · 共 32 行
C
32 行
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : GUI_FillRect.C
Purpose : Core file for emWin GSC
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
GUI_FillRect
*************************************************************************************************************/
void GUI_FillRect(int x0, int y0, int x1, int y1)
{
#if (GUI_WINSUPPORT)
GUI_RECT r;
#endif
GUI_LOCK();
#if (GUI_WINSUPPORT)
WM_ADDORG(x0,y0);
WM_ADDORG(x1,y1);
r.x0 = x0; r.x1 = x1;
r.y0 = y0; r.y1 = y1;
WM_ITERATE_START(&r); {
#endif
LCD_FillRect(x0,y0,x1,y1);
#if (GUI_WINSUPPORT)
} WM_ITERATE_END();
#endif
GUI_UNLOCK();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?