ddraw: Avoid LPDDOVERLAYFX.
This commit is contained in:
parent
b00ac5072a
commit
5cea0f122c
|
@ -794,8 +794,8 @@ static HRESULT WINAPI IDirectDrawSurface4Impl_UpdateOverlay(IDirectDrawSurface4
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI IDirectDrawSurface3Impl_UpdateOverlay(IDirectDrawSurface3 *iface,
|
static HRESULT WINAPI IDirectDrawSurface3Impl_UpdateOverlay(IDirectDrawSurface3 *iface,
|
||||||
LPRECT SrcRect, IDirectDrawSurface3 *DstSurface, LPRECT DstRect, DWORD Flags,
|
RECT *SrcRect, IDirectDrawSurface3 *DstSurface, RECT *DstRect, DWORD Flags,
|
||||||
LPDDOVERLAYFX FX)
|
DDOVERLAYFX *FX)
|
||||||
{
|
{
|
||||||
IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
|
IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
|
||||||
IDirectDrawSurfaceImpl *Dst = unsafe_impl_from_IDirectDrawSurface3(DstSurface);
|
IDirectDrawSurfaceImpl *Dst = unsafe_impl_from_IDirectDrawSurface3(DstSurface);
|
||||||
|
|
|
@ -936,7 +936,7 @@ typedef struct _DDRAWI_DDRAWSURFACE_MORE {
|
||||||
DWORD dwOverlayFlags;
|
DWORD dwOverlayFlags;
|
||||||
VOID *rgjunc;
|
VOID *rgjunc;
|
||||||
LPDDRAWI_DDVIDEOPORT_LCL lpVideoPort;
|
LPDDRAWI_DDVIDEOPORT_LCL lpVideoPort;
|
||||||
LPDDOVERLAYFX lpddOverlayFX;
|
DDOVERLAYFX *lpddOverlayFX;
|
||||||
DDSCAPSEX ddsCapsEx;
|
DDSCAPSEX ddsCapsEx;
|
||||||
DWORD dwTextureStage;
|
DWORD dwTextureStage;
|
||||||
LPVOID lpDDRAWReserved;
|
LPVOID lpDDRAWReserved;
|
||||||
|
|
Loading…
Reference in New Issue