Searched refs:rect (Results 1 – 6 of 6) sorted by relevance
| /utopia/UTPA2-700.0.x/modules/graphic/drv/ge/ |
| H A D | drvGE.c | 1870 GE_Result MDrv_GE_SetClipWindow(GE_Context *pGECtx, GE_Rect *rect) in MDrv_GE_SetClipWindow() argument 1875 GE_ASSERT((rect), E_GE_FAIL_PARAM, "%s: Null pointer\n", __FUNCTION__); in MDrv_GE_SetClipWindow() 1879 pGECtxLocal->u16ClipL = rect->x; in MDrv_GE_SetClipWindow() 1880 pGECtxLocal->u16ClipT = rect->y; in MDrv_GE_SetClipWindow() 1881 pGECtxLocal->u16ClipR = (rect->x + rect->width - 1); in MDrv_GE_SetClipWindow() 1882 pGECtxLocal->u16ClipB = (rect->y + rect->height - 1); in MDrv_GE_SetClipWindow() 1899 GE_Result MDrv_GE_GetClipWindow(GE_Context *pGECtx, GE_Rect *rect) in MDrv_GE_GetClipWindow() argument 1904 GE_ASSERT((rect), E_GE_FAIL_PARAM, "%s: Null pointer\n", __FUNCTION__); in MDrv_GE_GetClipWindow() 1908 rect->x = GE_ReadReg(&pGECtxLocal->halLocalCtx, REG_GE_CLIP_L); in MDrv_GE_GetClipWindow() 1909 rect->y = GE_ReadReg(&pGECtxLocal->halLocalCtx, REG_GE_CLIP_T); in MDrv_GE_GetClipWindow() [all …]
|
| H A D | drvGE.h | 1139 GE_Result MDrv_GE_SetClipWindow(GE_Context *pGECtx, GE_Rect *rect); 1140 GE_Result MDrv_GE_GetClipWindow(GE_Context *pGECtx, GE_Rect *rect); 1148 GE_Result MDrv_GE_FillRect(GE_Context *pGECtx, GE_Rect *rect, MS_U32 color, MS_U32 color2, MS_U32 f…
|
| /utopia/UTPA2-700.0.x/modules/graphic/api/gfx/ |
| H A D | mapiGFX.c | 927 GE_Rect rect; in MApi_GFX_GetClip_U02() local 931 MDrv_GE_GetClipWindow(g_apiGFXLocal.g_pGEContext, &rect); in MApi_GFX_GetClip_U02() 933 v0->x = rect.x ; // dangerous if V0 > V1 in MApi_GFX_GetClip_U02() 934 v0->y = rect.y ; in MApi_GFX_GetClip_U02() 935 v1->x = rect.width + v0->x - 1; in MApi_GFX_GetClip_U02() 936 v1->y = rect.height + v0->y - 1; in MApi_GFX_GetClip_U02() 1092 GE_Rect rect; in MApi_GFX_RectFill_U02() local 1098 rect.x = pfillblock->dstBlock.x; in MApi_GFX_RectFill_U02() 1099 rect.y = pfillblock->dstBlock.y; in MApi_GFX_RectFill_U02() 1100 rect.width = pfillblock->dstBlock.width; in MApi_GFX_RectFill_U02() [all …]
|
| /utopia/UTPA2-700.0.x/modules/graphic/api/gop/ |
| H A D | apiGOP.c | 1830 if(g_CaptureInfo.rect.w*g_CaptureInfo.rect.h *bpp ==0) in MApi_GOP_DWIN_Enable() 1836 … = (g_CaptureInfo.addr1[0]-g_CaptureInfo.addr[0])/(g_CaptureInfo.rect.w*g_CaptureInfo.rect.h *bpp); in MApi_GOP_DWIN_Enable() 1915 pproperty->u16x = g_CaptureInfo.rect.x; in MApi_GOP_DWIN_GetWinProperty() 1916 pproperty->u16y = g_CaptureInfo.rect.y; in MApi_GOP_DWIN_GetWinProperty() 1917 pproperty->u16w = g_CaptureInfo.rect.w; in MApi_GOP_DWIN_GetWinProperty() 1918 pproperty->u16h = g_CaptureInfo.rect.h; in MApi_GOP_DWIN_GetWinProperty() 1942 g_CaptureInfo.rect.x = pproperty->u16x; in MApi_GOP_DWIN_SetWinProperty() 1943 g_CaptureInfo.rect.y = pproperty->u16y; in MApi_GOP_DWIN_SetWinProperty() 1944 g_CaptureInfo.rect.w = pproperty->u16w; in MApi_GOP_DWIN_SetWinProperty() 1945 g_CaptureInfo.rect.h = pproperty->u16h; in MApi_GOP_DWIN_SetWinProperty()
|
| H A D | mapiGOP.c | 9348 DwinInfo.u16HPixelStart = pinfo->rect.x; in Ioctl_GOP_Dwin_Capture() 9349 DwinInfo.u16HPixelEnd = pinfo->rect.x + pinfo->rect.w; in Ioctl_GOP_Dwin_Capture() 9350 DwinInfo.u16VPixelStart = pinfo->rect.y; in Ioctl_GOP_Dwin_Capture() 9351 DwinInfo.u16VPixelEnd = pinfo->rect.y + pinfo->rect.h; in Ioctl_GOP_Dwin_Capture() 9358 if (pinfo->pitch == pinfo->rect.w) in Ioctl_GOP_Dwin_Capture() 9366 DwinInfo.u16DRAMJumpLen = (pinfo->pitch - pinfo->rect.w) * 4; // 1 pixel occupy 4 bytes in Ioctl_GOP_Dwin_Capture() 9370 DwinInfo.u16DRAMJumpLen = (pinfo->pitch - pinfo->rect.w) * 2; // 1 pixel occupy 2 bytes in Ioctl_GOP_Dwin_Capture()
|
| H A D | apiGOP_priv.h | 503 GOP_RECT rect; member
|