2003-01-28 02:12:23 +01:00
|
|
|
/*
|
2006-02-25 13:15:08 +01:00
|
|
|
* IDirect3DStateBlock8 implementation
|
2003-01-28 02:12:23 +01:00
|
|
|
*
|
2006-02-25 13:15:08 +01:00
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-01-28 02:12:23 +01: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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-01-28 02:12:23 +01:00
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
2003-01-28 02:12:23 +01:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2003-06-05 00:02:06 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* NOTE: DirectX8 doesn't export a IDirect3DStateBlock8, the interface is used internally to keep d3d8 and d3d9 as simila as possible */
|
|
|
|
/* IDirect3DStateBlock8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock8Impl_QueryInterface(IDirect3DStateBlock8 *iface, REFIID riid, LPVOID *ppobj) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DStateBlock8)) {
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2006-02-25 13:15:08 +01:00
|
|
|
return E_NOINTERFACE;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DStateBlock8Impl_AddRef(IDirect3DStateBlock8 *iface) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return ref;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DStateBlock8Impl_Release(IDirect3DStateBlock8 *iface) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (ref == 0) {
|
|
|
|
IWineD3DStateBlock_Release(This->wineD3DStateBlock);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* IDirect3DStateBlock8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock8Impl_GetDevice(IDirect3DStateBlock8 *iface, IDirect3DDevice8 **ppDevice) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IDirect3DResource8Impl_GetDevice((LPDIRECT3DRESOURCE8) This, ppDevice);
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock8Impl_Capture(IDirect3DStateBlock8 *iface) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DStateBlock_Capture(This->wineD3DStateBlock);
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DStateBlock8Impl_Apply(IDirect3DStateBlock8 *iface) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *This = (IDirect3DStateBlock8Impl *)iface;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DStateBlock_Apply(This->wineD3DStateBlock);
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
const IDirect3DStateBlock8Vtbl Direct3DStateBlock8_Vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown */
|
|
|
|
IDirect3DStateBlock8Impl_QueryInterface,
|
|
|
|
IDirect3DStateBlock8Impl_AddRef,
|
|
|
|
IDirect3DStateBlock8Impl_Release,
|
|
|
|
/* IDirect3DStateBlock8 */
|
|
|
|
IDirect3DStateBlock8Impl_GetDevice,
|
|
|
|
IDirect3DStateBlock8Impl_Capture,
|
|
|
|
IDirect3DStateBlock8Impl_Apply
|
2003-01-28 02:12:23 +01:00
|
|
|
};
|