Lines Matching refs:pproperty

5833 void MDrv_GOP_DWIN_GetWinProperty(MS_GOP_CTX_LOCAL*pGOPCtx, DRV_GOP_DwinProperty *pproperty)  in MDrv_GOP_DWIN_GetWinProperty()  argument
5838 pproperty->u64fbaddr0 = info.u64TFDRAMAddr; in MDrv_GOP_DWIN_GetWinProperty()
5839 pproperty->u64fbaddr1 = info.u64BFDRAMAddr; in MDrv_GOP_DWIN_GetWinProperty()
5841 pproperty->u16x = info.u16HPixelStart; in MDrv_GOP_DWIN_GetWinProperty()
5842 pproperty->u16w = info.u16HPixelEnd - info.u16HPixelStart ; in MDrv_GOP_DWIN_GetWinProperty()
5843 pproperty->u16y = info.u16VPixelStart; in MDrv_GOP_DWIN_GetWinProperty()
5844 pproperty->u16h = info.u16VPixelEnd - info.u16VPixelStart ; in MDrv_GOP_DWIN_GetWinProperty()
5845 pproperty->u16fbw = pproperty->u16w - info.u16DRAMJumpLen/2; in MDrv_GOP_DWIN_GetWinProperty()
5853 void MDrv_GOP_DWIN_SetWinProperty(MS_GOP_CTX_LOCAL*pGOPCtx, DRV_GOP_DwinProperty *pproperty) in MDrv_GOP_DWIN_SetWinProperty() argument
5857 info.u16HPixelStart = pproperty->u16x;// + PANEL_H_DE; in MDrv_GOP_DWIN_SetWinProperty()
5858 info.u16HPixelEnd = info.u16HPixelStart + pproperty->u16w ; in MDrv_GOP_DWIN_SetWinProperty()
5859 …info.u16VPixelStart = (pproperty->u16y == 0) ? (pproperty->u16y+1) : pproperty->u16y;// + PANEL_H_… in MDrv_GOP_DWIN_SetWinProperty()
5860 info.u16VPixelEnd = info.u16VPixelStart + pproperty->u16h;// - 1; in MDrv_GOP_DWIN_SetWinProperty()
5861 info.u64TFDRAMAddr = pproperty->u64fbaddr0; in MDrv_GOP_DWIN_SetWinProperty()
5862 info.u64BFDRAMAddr = pproperty->u64fbaddr1; in MDrv_GOP_DWIN_SetWinProperty()
5863 info.u16DRAMJumpLen = (pproperty->u16fbw - pproperty->u16w) * 2; // 1 pixel occupy 2 bytes in MDrv_GOP_DWIN_SetWinProperty()