Lines Matching refs:fbAttr

3673     GOP_GwinFBAttr fbAttr;  in MApi_GOP_GWIN_Get32FBAddr()  local
3676 if(MApi_GOP_GWIN_Get32FBInfo(u32fbID, &fbAttr) == GOP_API_SUCCESS) in MApi_GOP_GWIN_Get32FBAddr()
3678 *pAddr = fbAttr.addr; in MApi_GOP_GWIN_Get32FBAddr()
3761 GOP_GwinFBAttr fbAttr; in MApi_GOP_GWIN_Get32FBRegion() local
3764 if(MApi_GOP_GWIN_Get32FBInfo(u32fbID, &fbAttr) == GOP_API_SUCCESS) in MApi_GOP_GWIN_Get32FBRegion()
3766 *pX = fbAttr.x0; in MApi_GOP_GWIN_Get32FBRegion()
3767 *pY = fbAttr.y0; in MApi_GOP_GWIN_Get32FBRegion()
3768 *pW = fbAttr.width; in MApi_GOP_GWIN_Get32FBRegion()
3769 *pH = fbAttr.height; in MApi_GOP_GWIN_Get32FBRegion()
3793 GOP_GwinFBAttr fbAttr; in MApi_GOP_GWIN_Get32FBPosition() local
3795 if(MApi_GOP_GWIN_Get32FBInfo(u32fbID, &fbAttr) == GOP_API_SUCCESS) in MApi_GOP_GWIN_Get32FBPosition()
3797 *pX = fbAttr.x0; in MApi_GOP_GWIN_Get32FBPosition()
3798 *pY = fbAttr.y0; in MApi_GOP_GWIN_Get32FBPosition()
4006 GOP_GwinFBAttr fbAttr; in MApi_GOP_GWIN_Get32FBFmt() local
4016 if(MApi_GOP_GWIN_Get32FBInfo(u32fbId, &fbAttr) == GOP_API_SUCCESS) in MApi_GOP_GWIN_Get32FBFmt()
4018 GOP_RETURN(fbAttr.fbFmt); in MApi_GOP_GWIN_Get32FBFmt()
5309 E_GOP_API_Result MApi_GOP_GWIN_GetFBInfo(MS_U8 fbId, GOP_GwinFBAttr *fbAttr) in MApi_GOP_GWIN_GetFBInfo() argument
5311 return MApi_GOP_GWIN_Get32FBInfo((MS_U32)fbId, fbAttr); in MApi_GOP_GWIN_GetFBInfo()
5314 E_GOP_API_Result MApi_GOP_GWIN_Get32FBInfo(MS_U32 u32fbId, GOP_GwinFBAttr *fbAttr) in MApi_GOP_GWIN_Get32FBInfo() argument
5334 memset(fbAttr, 0x0, sizeof(GOP_GwinFBAttr)); in MApi_GOP_GWIN_Get32FBInfo()
5336 fbAttr->width = BuffInfo.width; in MApi_GOP_GWIN_Get32FBInfo()
5337 fbAttr->height = BuffInfo.height; in MApi_GOP_GWIN_Get32FBInfo()
5338 fbAttr->fbFmt = BuffInfo.fbFmt; in MApi_GOP_GWIN_Get32FBInfo()
5339 fbAttr->pitch = BuffInfo.pitch; in MApi_GOP_GWIN_Get32FBInfo()
5340 fbAttr->x0 = BuffInfo.disp_rect.x; in MApi_GOP_GWIN_Get32FBInfo()
5341 fbAttr->y0 = BuffInfo.disp_rect.y; in MApi_GOP_GWIN_Get32FBInfo()
5342 fbAttr->x1 = BuffInfo.disp_rect.x + BuffInfo.disp_rect.w; in MApi_GOP_GWIN_Get32FBInfo()
5343 fbAttr->y1 = BuffInfo.disp_rect.y + BuffInfo.disp_rect.h; in MApi_GOP_GWIN_Get32FBInfo()
5344 fbAttr->s_x = BuffInfo.disp_rect.x; in MApi_GOP_GWIN_Get32FBInfo()
5345 fbAttr->s_y = BuffInfo.disp_rect.y; in MApi_GOP_GWIN_Get32FBInfo()
5346 fbAttr->addr = BuffInfo.addr; in MApi_GOP_GWIN_Get32FBInfo()
5348 fbAttr->size = GOP_CalcPitch(BuffInfo.fbFmt, BuffInfo.width) * BuffInfo.height; in MApi_GOP_GWIN_Get32FBInfo()
5352 fbAttr->dispWidth = BuffInfo.disp_rect.w; in MApi_GOP_GWIN_Get32FBInfo()
5353 fbAttr->dispHeight = BuffInfo.disp_rect.h; in MApi_GOP_GWIN_Get32FBInfo()
5372 E_GOP_API_Result MApi_GOP_GWIN_SetFBInfo(MS_U8 fbId, GOP_GwinFBAttr *fbAttr) in MApi_GOP_GWIN_SetFBInfo() argument
5374 return MApi_GOP_GWIN_Set32FBInfo((MS_U32)fbId, fbAttr); in MApi_GOP_GWIN_SetFBInfo()
5377 E_GOP_API_Result MApi_GOP_GWIN_Set32FBInfo(MS_U32 u32fbId, GOP_GwinFBAttr *fbAttr) in MApi_GOP_GWIN_Set32FBInfo() argument
5387 BuffInfo.addr = fbAttr->addr; in MApi_GOP_GWIN_Set32FBInfo()
5388 BuffInfo.disp_rect.x = fbAttr->x0; in MApi_GOP_GWIN_Set32FBInfo()
5389 BuffInfo.disp_rect.y = fbAttr->y0; in MApi_GOP_GWIN_Set32FBInfo()
5390 BuffInfo.disp_rect.w = fbAttr->x1 - fbAttr->x0; in MApi_GOP_GWIN_Set32FBInfo()
5391 BuffInfo.disp_rect.h = fbAttr->y1 - fbAttr->y0; in MApi_GOP_GWIN_Set32FBInfo()
5392 BuffInfo.fbFmt = fbAttr->fbFmt; in MApi_GOP_GWIN_Set32FBInfo()
5393 BuffInfo.pitch = fbAttr->pitch; in MApi_GOP_GWIN_Set32FBInfo()
5395 BuffInfo.width = fbAttr->width; in MApi_GOP_GWIN_Set32FBInfo()
5396 BuffInfo.height = fbAttr->height; in MApi_GOP_GWIN_Set32FBInfo()