Lines Matching refs:gWin
2694 GOP_GwinInfo gWin; in MApi_GOP_GWIN_SetWinProperty() local
2702 memset(&gWin, 0, sizeof(GOP_GwinInfo)); in MApi_GOP_GWIN_SetWinProperty()
2705 if(MApi_GOP_GWIN_GetWinInfo(WinProperty.gId,&gWin)!=GOP_API_SUCCESS) in MApi_GOP_GWIN_SetWinProperty()
2714 gWin.u16DispHPixelStart = WinProperty.StartX; in MApi_GOP_GWIN_SetWinProperty()
2715 gWin.u16DispVPixelStart = WinProperty.StartY; in MApi_GOP_GWIN_SetWinProperty()
2716 gWin.u16DispHPixelEnd = WinProperty.StartX + WinProperty.Win_Width; in MApi_GOP_GWIN_SetWinProperty()
2717 gWin.u16DispVPixelEnd = WinProperty.StartY + WinProperty.Win_Height; in MApi_GOP_GWIN_SetWinProperty()
2718 gWin.u16WinX = WinProperty.FBOffset_X; in MApi_GOP_GWIN_SetWinProperty()
2719 gWin.u16WinY = WinProperty.FBOffset_Y; in MApi_GOP_GWIN_SetWinProperty()
2720 gWin.u16RBlkVPixSize = fbInfo.height; in MApi_GOP_GWIN_SetWinProperty()
2721 gWin.u16RBlkHPixSize = fbInfo.width; in MApi_GOP_GWIN_SetWinProperty()
2722 gWin.u16RBlkHRblkSize = GOP_CalcPitch(fbInfo.fbFmt, fbInfo.width); in MApi_GOP_GWIN_SetWinProperty()
2723 gWin.u32DRAMRBlkStart = fbInfo.addr; in MApi_GOP_GWIN_SetWinProperty()
2724 gWin.clrType = (EN_GOP_COLOR_TYPE)fbInfo.fbFmt; in MApi_GOP_GWIN_SetWinProperty()
2726 MApi_GOP_GWIN_SetWinInfo(WinProperty.gId, &gWin); in MApi_GOP_GWIN_SetWinProperty()
3973 GOP_GwinInfo gWin; in MApi_GOP_GWIN_GetWinProperty() local
3976 memset(&gWin, 0, sizeof(GOP_GwinInfo)); in MApi_GOP_GWIN_GetWinProperty()
3978 if(GOP_API_SUCCESS == MApi_GOP_GWIN_GetWinInfo(WinProperty->gId,&gWin)) in MApi_GOP_GWIN_GetWinProperty()
3980 WinProperty->StartX=gWin.u16DispHPixelStart; in MApi_GOP_GWIN_GetWinProperty()
3981 WinProperty->StartY=gWin.u16DispVPixelStart; in MApi_GOP_GWIN_GetWinProperty()
3983 WinProperty->Win_Width=gWin.u16DispHPixelEnd-gWin.u16DispHPixelStart+1; in MApi_GOP_GWIN_GetWinProperty()
3984 WinProperty->Win_Height=gWin.u16DispVPixelEnd-gWin.u16DispVPixelStart+1; in MApi_GOP_GWIN_GetWinProperty()