2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DSwapChain9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Raphael Junqueira
|
2005-06-23 13:05:24 +02:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 03:09:17 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-06-23 13:05:24 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
/* IDirect3DSwapChain IUnknown parts follow: */
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_QueryInterface(LPDIRECT3DSWAPCHAIN9 iface, REFIID riid, LPVOID* ppobj)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DSwapChain9)) {
|
2005-06-23 13:05:24 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DSwapChain9Impl_AddRef(LPDIRECT3DSWAPCHAIN9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DSwapChain9Impl_Release(LPDIRECT3DSWAPCHAIN9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DSwapChain9 parts follow: */
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_Present(LPDIRECT3DSWAPCHAIN9 iface, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion, DWORD dwFlags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSwapChain_Present(This->wineD3DSwapChain, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion, dwFlags);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetFrontBufferData(LPDIRECT3DSWAPCHAIN9 iface, IDirect3DSurface9* pDestSurface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSwapChain_GetFrontBufferData(This->wineD3DSwapChain, ((IDirect3DSurface9Impl *)pDestSurface)->wineD3DSurface);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetBackBuffer(LPDIRECT3DSWAPCHAIN9 iface, UINT iBackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface9** ppBackBuffer) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IWineD3DSurface *mySurface = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
hrc = IWineD3DSwapChain_GetBackBuffer(This->wineD3DSwapChain, iBackBuffer, Type, &mySurface);
|
|
|
|
if (hrc == D3D_OK && NULL != mySurface) {
|
|
|
|
IWineD3DSurface_GetParent(mySurface, (IUnknown **)ppBackBuffer);
|
|
|
|
IWineD3DSurface_Release(mySurface);
|
|
|
|
}
|
|
|
|
return hrc;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetRasterStatus(LPDIRECT3DSWAPCHAIN9 iface, D3DRASTER_STATUS* pRasterStatus) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSwapChain_GetRasterStatus(This->wineD3DSwapChain, pRasterStatus);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetDisplayMode(LPDIRECT3DSWAPCHAIN9 iface, D3DDISPLAYMODE* pMode) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DSwapChain_GetDisplayMode(This->wineD3DSwapChain, pMode);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetDevice(LPDIRECT3DSWAPCHAIN9 iface, IDirect3DDevice9** ppDevice) {
|
2005-06-23 13:05:24 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IWineD3DDevice *device = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
hrc = IWineD3DSwapChain_GetDevice(This->wineD3DSwapChain, &device);
|
|
|
|
if (hrc == D3D_OK && NULL != device) {
|
|
|
|
IWineD3DDevice_GetParent(device, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(device);
|
|
|
|
}
|
|
|
|
return hrc;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DSwapChain9Impl_GetPresentParameters(LPDIRECT3DSWAPCHAIN9 iface, D3DPRESENT_PARAMETERS* pPresentationParameters) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
FIXME("(%p) : inplement using WINED3DPRESENT_PARAMERS\n", This);
|
|
|
|
return IWineD3DSwapChain_GetPresentParameters(This->wineD3DSwapChain, pPresentationParameters);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
const IDirect3DSwapChain9Vtbl Direct3DSwapChain9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
|
|
|
IDirect3DSwapChain9Impl_QueryInterface,
|
|
|
|
IDirect3DSwapChain9Impl_AddRef,
|
|
|
|
IDirect3DSwapChain9Impl_Release,
|
|
|
|
IDirect3DSwapChain9Impl_Present,
|
|
|
|
IDirect3DSwapChain9Impl_GetFrontBufferData,
|
|
|
|
IDirect3DSwapChain9Impl_GetBackBuffer,
|
|
|
|
IDirect3DSwapChain9Impl_GetRasterStatus,
|
|
|
|
IDirect3DSwapChain9Impl_GetDisplayMode,
|
|
|
|
IDirect3DSwapChain9Impl_GetDevice,
|
|
|
|
IDirect3DSwapChain9Impl_GetPresentParameters
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* IDirect3DDevice9 IDirect3DSwapChain9 Methods follow: */
|
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_CreateAdditionalSwapChain(LPDIRECT3DDEVICE9 iface, D3DPRESENT_PARAMETERS* pPresentationParameters, IDirect3DSwapChain9** pSwapChain) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
IDirect3DSwapChain9Impl* object;
|
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
WINED3DPRESENT_PARAMETERS localParameters;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*pSwapChain = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
object->ref = 1;
|
|
|
|
object->lpVtbl = &Direct3DSwapChain9_Vtbl;
|
|
|
|
|
|
|
|
/* Allocate an associated WineD3DDevice object */
|
|
|
|
localParameters.BackBufferWidth = &pPresentationParameters->BackBufferWidth;
|
|
|
|
localParameters.BackBufferHeight = &pPresentationParameters->BackBufferHeight;
|
|
|
|
localParameters.BackBufferFormat = &pPresentationParameters->BackBufferFormat;
|
|
|
|
localParameters.BackBufferCount = &pPresentationParameters->BackBufferCount;
|
|
|
|
localParameters.MultiSampleType = &pPresentationParameters->MultiSampleType;
|
|
|
|
localParameters.MultiSampleQuality = &pPresentationParameters->MultiSampleQuality;
|
|
|
|
localParameters.SwapEffect = &pPresentationParameters->SwapEffect;
|
|
|
|
localParameters.hDeviceWindow = &pPresentationParameters->hDeviceWindow;
|
|
|
|
localParameters.Windowed = &pPresentationParameters->Windowed;
|
|
|
|
localParameters.EnableAutoDepthStencil = &pPresentationParameters->EnableAutoDepthStencil;
|
|
|
|
localParameters.AutoDepthStencilFormat = &pPresentationParameters->AutoDepthStencilFormat;
|
|
|
|
localParameters.Flags = &pPresentationParameters->Flags;
|
|
|
|
localParameters.FullScreen_RefreshRateInHz = &pPresentationParameters->FullScreen_RefreshRateInHz;
|
|
|
|
localParameters.PresentationInterval = &pPresentationParameters->PresentationInterval;
|
|
|
|
|
|
|
|
|
|
|
|
hrc = IWineD3DDevice_CreateAdditionalSwapChain(This->WineD3DDevice, &localParameters, &object->wineD3DSwapChain, (IUnknown*)object, D3D9CB_CreateRenderTarget, D3D9CB_CreateDepthStencilSurface);
|
|
|
|
if (hrc != D3D_OK) {
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateAdditionalSwapChain failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0 , object);
|
|
|
|
*pSwapChain = NULL;
|
|
|
|
}else{
|
|
|
|
*pSwapChain = (IDirect3DSwapChain9 *)object;
|
|
|
|
}
|
|
|
|
TRACE("(%p) returning %p\n", This, *pSwapChain);
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetSwapChain(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, IDirect3DSwapChain9** pSwapChain) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IWineD3DSwapChain *swapchain = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
hrc = IWineD3DDevice_GetSwapChain(This->WineD3DDevice, iSwapChain, &swapchain);
|
|
|
|
if (hrc == D3D_OK && NULL != swapchain) {
|
|
|
|
IWineD3DSwapChain_GetParent(swapchain, (IUnknown **)pSwapChain);
|
|
|
|
IWineD3DSwapChain_Release(swapchain);
|
|
|
|
}
|
|
|
|
return hrc;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
UINT WINAPI IDirect3DDevice9Impl_GetNumberOfSwapChains(LPDIRECT3DDEVICE9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-06-23 13:05:24 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DDevice_GetNumberOfSwapChains(This->WineD3DDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|