Lines Matching refs:stRect

2443 static MS_BOOL _DMS_GE_DrawRect(MS_PHY DstAddress, GFX_Block stRect, MS_U32 u32Data)  in _DMS_GE_DrawRect()  argument
2464 pGfxRectFillInfo.dstBlock.x = stRect.x; in _DMS_GE_DrawRect()
2465 pGfxRectFillInfo.dstBlock.y = stRect.y; in _DMS_GE_DrawRect()
2466 pGfxRectFillInfo.dstBlock.width= stRect.width; in _DMS_GE_DrawRect()
2467 pGfxRectFillInfo.dstBlock.height= stRect.height; in _DMS_GE_DrawRect()
2484 static MS_BOOL _DMS_GE_GetRectAreaByWin(MS_U32 u32Window, GFX_Block *stRect) in _DMS_GE_GetRectAreaByWin() argument
2487 stRect->x = RES_DMS._stXC_DIPWinInfo[u32Window].stDstWin.u32x; in _DMS_GE_GetRectAreaByWin()
2488 stRect->y= RES_DMS._stXC_DIPWinInfo[u32Window].stDstWin.u32y; in _DMS_GE_GetRectAreaByWin()
2489 stRect->width = RES_DMS._stXC_DIPWinInfo[u32Window].stDstWin.u32width; in _DMS_GE_GetRectAreaByWin()
2490 stRect->height = RES_DMS._stXC_DIPWinInfo[u32Window].stDstWin.u32height; in _DMS_GE_GetRectAreaByWin()
2495 static MS_BOOL _DMS_GE_GetPreviousRectAreaByWin(MS_U32 u32Window, GFX_Block *stRect) in _DMS_GE_GetPreviousRectAreaByWin() argument
2500 stRect->x = RES_DMS._stXC_PreDispWinInfo[u32Window].u32x; in _DMS_GE_GetPreviousRectAreaByWin()
2501 stRect->y= RES_DMS._stXC_PreDispWinInfo[u32Window].u32y; in _DMS_GE_GetPreviousRectAreaByWin()
2502 stRect->width = RES_DMS._stXC_PreDispWinInfo[u32Window].u32width; in _DMS_GE_GetPreviousRectAreaByWin()
2503 stRect->height = RES_DMS._stXC_PreDispWinInfo[u32Window].u32height; in _DMS_GE_GetPreviousRectAreaByWin()
2510 GFX_Block stRect = {0}; in _DMS_GE_ClearWin() local
2525 _DMS_GE_GetRectAreaByWin(u32Window, &stRect); in _DMS_GE_ClearWin()
2530 _DMS_GE_DrawRect(phyBaseAddr, stRect, DMS_DIP_MULTIVIEW_TRANSPARENT_COLOR); in _DMS_GE_ClearWin()
2538 GFX_Block stRect = {0}; in _DMS_GE_ClearPreviousWin() local
2549 _DMS_GE_GetPreviousRectAreaByWin(u32Window, &stRect); in _DMS_GE_ClearPreviousWin()
2555 _DMS_GE_DrawRect(phyBaseAddr, stRect, DMS_DIP_MULTIVIEW_TRANSPARENT_COLOR); in _DMS_GE_ClearPreviousWin()