Searched defs:pSourceSurface (Results 1 - 2 of 2) 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
886 IDirect3DSurface8Impl *Source = (IDirect3DSurface8Impl *) pSourceSurface;
894 iface, pSourceSurface, pSourceRects, cRects, pDestinationSurface, pDestPoints);
908 WARN("(%p) source %p format must match the dest %p format, returning WINED3DERR_INVALIDCALL\n", iface, pSourceSurface, pDestinationSurface);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c1289 static HRESULT WINAPI IDirect3DDevice9Impl_UpdateSurface(LPDIRECT3DDEVICE9EX iface, IDirect3DSurface9* pSourceSurface, CONST RECT* pSourceRect, IDirect3DSurface9* pDestinationSurface, CONST POINT* pDestPoint) { argument
1294 iface, pSourceSurface, pSourceRect, pDestinationSurface, pDestPoint);
1297 hr = IWineD3DDevice_UpdateSurface(This->WineD3DDevice, ((IDirect3DSurface9Impl *)pSourceSurface)->wineD3DSurface, pSourceRect, ((IDirect3DSurface9Impl *)pDestinationSurface)->wineD3DSurface, pDestPoint);
1350 static HRESULT WINAPI IDirect3DDevice9Impl_StretchRect(IDirect3DDevice9Ex *iface, IDirect3DSurface9 *pSourceSurface, argument
1353 IDirect3DSurface9Impl *src = (IDirect3DSurface9Impl *) pSourceSurface;
1358 iface, pSourceSurface, pSourceRect, pDestSurface, pDestRect, Filter);

Completed in 63 milliseconds