Lines Matching refs:WinProperty
2692 E_GOP_API_Result MApi_GOP_GWIN_SetWinProperty(GOP_GwinDispProperty WinProperty) in MApi_GOP_GWIN_SetWinProperty() argument
2700 u32fbId = MApi_GOP_GWIN_GetFBfromGWIN(WinProperty.gId); 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()
2726 MApi_GOP_GWIN_SetWinInfo(WinProperty.gId, &gWin); in MApi_GOP_GWIN_SetWinProperty()
3971 E_GOP_API_Result MApi_GOP_GWIN_GetWinProperty(GOP_GwinDispProperty *WinProperty) in MApi_GOP_GWIN_GetWinProperty() argument
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()