Henri Verbeet : wined3d: IWineD3DStateBlockImpl no longer implements IWineD3DBase.

Alexandre Julliard julliard at winehq.org
Fri Dec 18 10:49:07 CST 2009


Module: wine
Branch: master
Commit: a389fe551e1ac44a1805eccffd3ba5a3679dbc10
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a389fe551e1ac44a1805eccffd3ba5a3679dbc10

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Thu Dec 17 19:14:36 2009 +0100

wined3d: IWineD3DStateBlockImpl no longer implements IWineD3DBase.

---

 dlls/wined3d/stateblock.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/stateblock.c b/dlls/wined3d/stateblock.c
index 7c47f36..7241e8a 100644
--- a/dlls/wined3d/stateblock.c
+++ b/dlls/wined3d/stateblock.c
@@ -465,8 +465,8 @@ static HRESULT  WINAPI IWineD3DStateBlockImpl_QueryInterface(IWineD3DStateBlock
     IWineD3DStateBlockImpl *This = (IWineD3DStateBlockImpl *)iface;
     TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
     if (IsEqualGUID(riid, &IID_IUnknown)
-        || IsEqualGUID(riid, &IID_IWineD3DBase)
-        || IsEqualGUID(riid, &IID_IWineD3DStateBlock)){
+            || IsEqualGUID(riid, &IID_IWineD3DStateBlock))
+    {
         IUnknown_AddRef(iface);
         *ppobj = This;
         return S_OK;




More information about the wine-cvs mailing list