Lines Matching refs:DwinInfo
9340 DRV_GOP_DWIN_INFO DwinInfo; in Ioctl_GOP_Dwin_Capture() local
9346 memset(&DwinInfo,0, sizeof(DRV_GOP_DWIN_INFO)); in Ioctl_GOP_Dwin_Capture()
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()
9353 DwinInfo.u64TFDRAMAddr = pinfo->addr[0]; in Ioctl_GOP_Dwin_Capture()
9354 DwinInfo.u64BFDRAMAddr = pinfo->addr1[0]; in Ioctl_GOP_Dwin_Capture()
9356 DwinInfo.u8fmt = pinfo->fmt; in Ioctl_GOP_Dwin_Capture()
9360 DwinInfo.u16DRAMJumpLen = 0; //Pitch and width are qual 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()
9416 if((DwinInfo.u64TFDRAMAddr-DwinInfo.u64BFDRAMAddr)!=0) in Ioctl_GOP_Dwin_Capture()
9418 MDrv_GOP_DWIN_SetWinInfo(g_pGOPCtxLocal, &DwinInfo); in Ioctl_GOP_Dwin_Capture()