Searched defs:pDestPoints (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c885 static HRESULT WINAPI IDirect3DDevice8Impl_CopyRects(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8 *pSourceSurface, CONST RECT *pSourceRects, UINT cRects, IDirect3DSurface8 *pDestinationSurface, CONST POINT *pDestPoints) { argument
894 iface, pSourceSurface, pSourceRects, cRects, pDestinationSurface, pDestPoints);
917 if (cRects == 0 && pSourceRects == NULL && pDestPoints == NULL) {
922 if (NULL != pSourceRects && NULL != pDestPoints) {
924 IWineD3DSurface_BltFast(Dest->wineD3DSurface, pDestPoints[i].x, pDestPoints[i].y, Source->wineD3DSurface, &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);

Completed in 170 milliseconds