2 * IDirect3DSwapChain9 implementation
4 * Copyright 2002-2003 Jason Edmeades
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "d3d9_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
27 /* IDirect3DSwapChain IUnknown parts follow: */
28 HRESULT WINAPI IDirect3DSwapChain9Impl_QueryInterface(LPDIRECT3DSWAPCHAIN9 iface, REFIID riid, LPVOID* ppobj)
30 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
32 if (IsEqualGUID(riid, &IID_IUnknown)
33 || IsEqualGUID(riid, &IID_IDirect3DSwapChain9)) {
34 IDirect3DSwapChain9Impl_AddRef(iface);
39 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
43 ULONG WINAPI IDirect3DSwapChain9Impl_AddRef(LPDIRECT3DSWAPCHAIN9 iface) {
44 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
45 ULONG ref = InterlockedIncrement(&This->ref);
47 TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
52 ULONG WINAPI IDirect3DSwapChain9Impl_Release(LPDIRECT3DSWAPCHAIN9 iface) {
53 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
54 ULONG ref = InterlockedDecrement(&This->ref);
56 TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
59 HeapFree(GetProcessHeap(), 0, This);
64 /* IDirect3DSwapChain9 parts follow: */
65 HRESULT WINAPI IDirect3DSwapChain9Impl_Present(LPDIRECT3DSWAPCHAIN9 iface, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion, DWORD dwFlags) {
66 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
67 FIXME("(%p) : stub\n", This);
71 HRESULT WINAPI IDirect3DSwapChain9Impl_GetFrontBufferData(LPDIRECT3DSWAPCHAIN9 iface, IDirect3DSurface9* pDestSurface) {
72 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
73 FIXME("(%p) : stub\n", This);
77 HRESULT WINAPI IDirect3DSwapChain9Impl_GetBackBuffer(LPDIRECT3DSWAPCHAIN9 iface, UINT iBackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface9** ppBackBuffer) {
78 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
79 FIXME("(%p) : stub\n", This);
83 HRESULT WINAPI IDirect3DSwapChain9Impl_GetRasterStatus(LPDIRECT3DSWAPCHAIN9 iface, D3DRASTER_STATUS* pRasterStatus) {
84 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
85 FIXME("(%p) : stub\n", This);
89 HRESULT WINAPI IDirect3DSwapChain9Impl_GetDisplayMode(LPDIRECT3DSWAPCHAIN9 iface, D3DDISPLAYMODE* pMode) {
90 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
91 FIXME("(%p) : stub\n", This);
95 HRESULT WINAPI IDirect3DSwapChain9Impl_GetDevice(LPDIRECT3DSWAPCHAIN9 iface, IDirect3DDevice9** ppDevice) {
96 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
97 TRACE("(%p) : returning %p\n", This, This->Device);
98 *ppDevice = (LPDIRECT3DDEVICE9) This->Device;
100 /* Note Calling this method will increase the internal reference count
101 on the IDirect3DDevice9 interface. */
102 IDirect3DDevice9Impl_AddRef(*ppDevice);
106 HRESULT WINAPI IDirect3DSwapChain9Impl_GetPresentParameters(LPDIRECT3DSWAPCHAIN9 iface, D3DPRESENT_PARAMETERS* pPresentationParameters) {
107 IDirect3DSwapChain9Impl *This = (IDirect3DSwapChain9Impl *)iface;
108 FIXME("(%p) : copy\n", This);
109 memcpy(pPresentationParameters, &This->PresentParms, sizeof(D3DPRESENT_PARAMETERS));
114 const IDirect3DSwapChain9Vtbl Direct3DSwapChain9_Vtbl =
116 IDirect3DSwapChain9Impl_QueryInterface,
117 IDirect3DSwapChain9Impl_AddRef,
118 IDirect3DSwapChain9Impl_Release,
119 IDirect3DSwapChain9Impl_Present,
120 IDirect3DSwapChain9Impl_GetFrontBufferData,
121 IDirect3DSwapChain9Impl_GetBackBuffer,
122 IDirect3DSwapChain9Impl_GetRasterStatus,
123 IDirect3DSwapChain9Impl_GetDisplayMode,
124 IDirect3DSwapChain9Impl_GetDevice,
125 IDirect3DSwapChain9Impl_GetPresentParameters
129 /* IDirect3DDevice9 IDirect3DSwapChain9 Methods follow: */
130 HRESULT WINAPI IDirect3DDevice9Impl_CreateAdditionalSwapChain(LPDIRECT3DDEVICE9 iface, D3DPRESENT_PARAMETERS* pPresentationParameters, IDirect3DSwapChain9** pSwapChain) {
131 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
132 FIXME("(%p) : stub\n", This);
136 HRESULT WINAPI IDirect3DDevice9Impl_GetSwapChain(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, IDirect3DSwapChain9** pSwapChain) {
137 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
138 FIXME("(%p) : stub\n", This);
142 UINT WINAPI IDirect3DDevice9Impl_GetNumberOfSwapChains(LPDIRECT3DDEVICE9 iface) {
143 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
144 FIXME("(%p) : stub\n", This);