2 *IDirect3DSwapChain9 implementation
4 *Copyright 2002-2003 Jason Edmeades
5 *Copyright 2002-2003 Raphael Junqueira
6 *Copyright 2005 Oliver Stieber
7 *Copyright 2007-2008 Stefan Dösinger for CodeWeavers
9 *This library is free software; you can redistribute it and/or
10 *modify it under the terms of the GNU Lesser General Public
11 *License as published by the Free Software Foundation; either
12 *version 2.1 of the License, or (at your option) any later version.
14 *This library is distributed in the hope that it will be useful,
15 *but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 *Lesser General Public License for more details.
19 *You should have received a copy of the GNU Lesser General Public
20 *License along with this library; if not, write to the Free Software
21 *Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wined3d_private.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(d3d
);
29 /* IDirect3DSwapChain IUnknown parts follow: */
30 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_QueryInterface(IWineD3DSwapChain
*iface
, REFIID riid
, void **object
)
32 TRACE("iface %p, riid %s, object %p.\n", iface
, debugstr_guid(riid
), object
);
34 if (IsEqualGUID(riid
, &IID_IWineD3DSwapChain
)
35 || IsEqualGUID(riid
, &IID_IWineD3DBase
)
36 || IsEqualGUID(riid
, &IID_IUnknown
))
38 IUnknown_AddRef(iface
);
43 WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid
));
49 ULONG WINAPI
IWineD3DBaseSwapChainImpl_AddRef(IWineD3DSwapChain
*iface
) {
50 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
51 DWORD refCount
= InterlockedIncrement(&This
->ref
);
52 TRACE("(%p) : AddRef increasing from %d\n", This
, refCount
- 1);
56 ULONG WINAPI
IWineD3DBaseSwapChainImpl_Release(IWineD3DSwapChain
*iface
) {
57 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
59 refCount
= InterlockedDecrement(&This
->ref
);
60 TRACE("(%p) : ReleaseRef to %d\n", This
, refCount
);
62 IWineD3DSwapChain_Destroy(iface
);
67 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetParent(IWineD3DSwapChain
*iface
, IUnknown
** ppParent
){
68 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
69 *ppParent
= This
->parent
;
70 IUnknown_AddRef(*ppParent
);
71 TRACE("(%p) returning %p\n", This
, *ppParent
);
75 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetFrontBufferData(IWineD3DSwapChain
*iface
, IWineD3DSurface
*pDestSurface
) {
76 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
79 TRACE("(%p) : iface(%p) pDestSurface(%p)\n", This
, iface
, pDestSurface
);
84 if (This
->presentParms
.Windowed
) {
85 MapWindowPoints(This
->win_handle
, NULL
, &start
, 1);
88 IWineD3DSurface_BltFast(pDestSurface
, start
.x
, start
.y
, (IWineD3DSurface
*)This
->front_buffer
, NULL
, 0);
92 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetBackBuffer(IWineD3DSwapChain
*iface
, UINT iBackBuffer
, WINED3DBACKBUFFER_TYPE Type
, IWineD3DSurface
**ppBackBuffer
) {
94 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
96 if (iBackBuffer
> This
->presentParms
.BackBufferCount
- 1) {
97 TRACE("Back buffer count out of range\n");
98 /* Native d3d9 doesn't set NULL here, just as wine's d3d9. But set it
99 * here in wined3d to avoid problems in other libs
101 *ppBackBuffer
= NULL
;
102 return WINED3DERR_INVALIDCALL
;
105 /* Return invalid if there is no backbuffer array, otherwise it will crash when ddraw is
106 * used (there This->backBuffer is always NULL). We need this because this function has
107 * to be called from IWineD3DStateBlockImpl_InitStartupStateBlock to get the default
108 * scissorrect dimensions. */
109 if (!This
->back_buffers
)
111 *ppBackBuffer
= NULL
;
112 return WINED3DERR_INVALIDCALL
;
115 *ppBackBuffer
= (IWineD3DSurface
*)This
->back_buffers
[iBackBuffer
];
116 TRACE("(%p) : BackBuf %d Type %d returning %p\n", This
, iBackBuffer
, Type
, *ppBackBuffer
);
118 /* Note inc ref on returned surface */
119 if(*ppBackBuffer
) IWineD3DSurface_AddRef(*ppBackBuffer
);
124 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetRasterStatus(IWineD3DSwapChain
*iface
, WINED3DRASTER_STATUS
*pRasterStatus
) {
126 pRasterStatus
->InVBlank
= TRUE
;
127 pRasterStatus
->ScanLine
= 0;
128 /* No openGL equivalent */
131 FIXME("iface %p, raster_status %p stub!\n", iface
, pRasterStatus
);
137 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetDisplayMode(IWineD3DSwapChain
*iface
, WINED3DDISPLAYMODE
*pMode
) {
138 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
141 TRACE("(%p)->(%p): Calling GetAdapterDisplayMode\n", This
, pMode
);
142 hr
= IWineD3D_GetAdapterDisplayMode(This
->device
->wined3d
, This
->device
->adapter
->ordinal
, pMode
);
144 TRACE("(%p) : returning w(%d) h(%d) rr(%d) fmt(%u,%s)\n", This
, pMode
->Width
, pMode
->Height
, pMode
->RefreshRate
,
145 pMode
->Format
, debug_d3dformat(pMode
->Format
));
149 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetDevice(IWineD3DSwapChain
*iface
, IWineD3DDevice
**device
)
151 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
153 *device
= (IWineD3DDevice
*)This
->device
;
154 IWineD3DDevice_AddRef(*device
);
156 TRACE("(%p) : returning %p\n", This
, *device
);
160 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetPresentParameters(IWineD3DSwapChain
*iface
, WINED3DPRESENT_PARAMETERS
*pPresentationParameters
) {
161 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
162 TRACE("(%p)\n", This
);
164 *pPresentationParameters
= This
->presentParms
;
169 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_SetGammaRamp(IWineD3DSwapChain
*iface
, DWORD Flags
, CONST WINED3DGAMMARAMP
*pRamp
){
171 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
173 TRACE("(%p) : pRamp@%p flags(%d)\n", This
, pRamp
, Flags
);
174 hDC
= GetDC(This
->device_window
);
175 SetDeviceGammaRamp(hDC
, (LPVOID
)pRamp
);
176 ReleaseDC(This
->device_window
, hDC
);
181 HRESULT WINAPI
IWineD3DBaseSwapChainImpl_GetGammaRamp(IWineD3DSwapChain
*iface
, WINED3DGAMMARAMP
*pRamp
){
183 IWineD3DSwapChainImpl
*This
= (IWineD3DSwapChainImpl
*)iface
;
185 TRACE("(%p) : pRamp@%p\n", This
, pRamp
);
186 hDC
= GetDC(This
->device_window
);
187 GetDeviceGammaRamp(hDC
, pRamp
);
188 ReleaseDC(This
->device_window
, hDC
);