Lines Matching refs:pproperty

1912 E_GOP_API_Result MApi_GOP_DWIN_GetWinProperty(GOP_DwinProperty *pproperty)  in MApi_GOP_DWIN_GetWinProperty()  argument
1915 pproperty->u16x = g_CaptureInfo.rect.x; in MApi_GOP_DWIN_GetWinProperty()
1916 pproperty->u16y = g_CaptureInfo.rect.y; in MApi_GOP_DWIN_GetWinProperty()
1917 pproperty->u16w = g_CaptureInfo.rect.w; in MApi_GOP_DWIN_GetWinProperty()
1918 pproperty->u16h = g_CaptureInfo.rect.h; in MApi_GOP_DWIN_GetWinProperty()
1919 pproperty->u16fbw = g_CaptureInfo.pitch; in MApi_GOP_DWIN_GetWinProperty()
1921 pproperty->u32fbaddr0 = g_CaptureInfo.addr[0]; in MApi_GOP_DWIN_GetWinProperty()
1922 pproperty->u32fbaddr1 = g_CaptureInfo.addr1[0]; in MApi_GOP_DWIN_GetWinProperty()
1932 E_GOP_API_Result MApi_GOP_DWIN_SetWinProperty(GOP_DwinProperty *pproperty) in MApi_GOP_DWIN_SetWinProperty() argument
1936 if((pproperty->u16h <=0) || (pproperty->u16w<=0)) in MApi_GOP_DWIN_SetWinProperty()
1938 …GOP_ERR("\n %s DWIN Width(%d) or Height(%d) <= 0\n", __FUNCTION__,pproperty->u16w,pproperty->u16h); in MApi_GOP_DWIN_SetWinProperty()
1942 g_CaptureInfo.rect.x = pproperty->u16x; in MApi_GOP_DWIN_SetWinProperty()
1943 g_CaptureInfo.rect.y = pproperty->u16y; in MApi_GOP_DWIN_SetWinProperty()
1944 g_CaptureInfo.rect.w = pproperty->u16w; in MApi_GOP_DWIN_SetWinProperty()
1945 g_CaptureInfo.rect.h = pproperty->u16h; in MApi_GOP_DWIN_SetWinProperty()
1946 g_CaptureInfo.pitch = pproperty->u16fbw; in MApi_GOP_DWIN_SetWinProperty()
1948 g_CaptureInfo.addr[0] = pproperty->u32fbaddr0; in MApi_GOP_DWIN_SetWinProperty()
1949 g_CaptureInfo.addr1[0] = pproperty->u32fbaddr1; in MApi_GOP_DWIN_SetWinProperty()