mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
wined3d: Remove the GetContainer() methods from the public wined3d interface.
There's nothing left that uses these.
This commit is contained in:
parent
22428d97e1
commit
42b814c7d1
@ -4719,7 +4719,6 @@ const IWineD3DSurfaceVtbl IWineD3DSurface_Vtbl =
|
||||
IWineD3DSurfaceImpl_UnLoad,
|
||||
IWineD3DBaseSurfaceImpl_GetType,
|
||||
/* IWineD3DSurface */
|
||||
IWineD3DBaseSurfaceImpl_GetContainer,
|
||||
IWineD3DBaseSurfaceImpl_GetDesc,
|
||||
IWineD3DSurfaceImpl_LockRect,
|
||||
IWineD3DSurfaceImpl_UnlockRect,
|
||||
|
@ -148,24 +148,6 @@ HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetParent(IWineD3DSurface *iface, IUnknow
|
||||
IWineD3DSurface IWineD3DSurface parts follow
|
||||
****************************************************** */
|
||||
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetContainer(IWineD3DSurface* iface, REFIID riid, void** ppContainer) {
|
||||
IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
|
||||
IWineD3DBase *container = 0;
|
||||
|
||||
TRACE("(This %p, riid %s, ppContainer %p)\n", This, debugstr_guid(riid), ppContainer);
|
||||
|
||||
if (!ppContainer) {
|
||||
ERR("Called without a valid ppContainer.\n");
|
||||
}
|
||||
|
||||
/* Standalone surfaces return the device as container. */
|
||||
if (This->container.u.base) container = This->container.u.base;
|
||||
else container = (IWineD3DBase *)This->resource.device;
|
||||
|
||||
TRACE("Relaying to QueryInterface\n");
|
||||
return IUnknown_QueryInterface(container, riid, ppContainer);
|
||||
}
|
||||
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDesc(IWineD3DSurface *iface, WINED3DSURFACE_DESC *pDesc) {
|
||||
IWineD3DSurfaceImpl *This = (IWineD3DSurfaceImpl *)iface;
|
||||
|
||||
|
@ -503,7 +503,6 @@ const IWineD3DSurfaceVtbl IWineGDISurface_Vtbl =
|
||||
IWineGDISurfaceImpl_UnLoad,
|
||||
IWineD3DBaseSurfaceImpl_GetType,
|
||||
/* IWineD3DSurface */
|
||||
IWineD3DBaseSurfaceImpl_GetContainer,
|
||||
IWineD3DBaseSurfaceImpl_GetDesc,
|
||||
IWineGDISurfaceImpl_LockRect,
|
||||
IWineGDISurfaceImpl_UnlockRect,
|
||||
|
@ -184,27 +184,8 @@ static WINED3DRESOURCETYPE WINAPI IWineD3DVolumeImpl_GetType(IWineD3DVolume *ifa
|
||||
/* *******************************************
|
||||
IWineD3DVolume parts follow
|
||||
******************************************* */
|
||||
static HRESULT WINAPI IWineD3DVolumeImpl_GetContainer(IWineD3DVolume *iface, REFIID riid, void** ppContainer) {
|
||||
IWineD3DVolumeImpl *This = (IWineD3DVolumeImpl *)iface;
|
||||
|
||||
TRACE("(This %p, riid %s, ppContainer %p)\n", This, debugstr_guid(riid), ppContainer);
|
||||
|
||||
if (!ppContainer) {
|
||||
ERR("Called without a valid ppContainer.\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
/* Although surfaces can be standalone, volumes can't */
|
||||
if (!This->container) {
|
||||
ERR("Volume without an container. Should not happen.\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
TRACE("Relaying to QueryInterface\n");
|
||||
return IUnknown_QueryInterface((IWineD3DVolumeTexture *)This->container, riid, ppContainer);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI IWineD3DVolumeImpl_GetDesc(IWineD3DVolume *iface, WINED3DVOLUME_DESC* pDesc) {
|
||||
static HRESULT WINAPI IWineD3DVolumeImpl_GetDesc(IWineD3DVolume *iface, WINED3DVOLUME_DESC *pDesc)
|
||||
{
|
||||
IWineD3DVolumeImpl *This = (IWineD3DVolumeImpl *)iface;
|
||||
TRACE("(%p) : copying into %p\n", This, pDesc);
|
||||
|
||||
@ -349,7 +330,6 @@ static const IWineD3DVolumeVtbl IWineD3DVolume_Vtbl =
|
||||
IWineD3DVolumeImpl_UnLoad,
|
||||
IWineD3DVolumeImpl_GetType,
|
||||
/* IWineD3DVolume */
|
||||
IWineD3DVolumeImpl_GetContainer,
|
||||
IWineD3DVolumeImpl_GetDesc,
|
||||
IWineD3DVolumeImpl_LockBox,
|
||||
IWineD3DVolumeImpl_UnlockBox,
|
||||
|
@ -2124,8 +2124,6 @@ HRESULT WINAPI IWineD3DBaseSurfaceImpl_FreePrivateData(IWineD3DSurface *iface, R
|
||||
DWORD WINAPI IWineD3DBaseSurfaceImpl_SetPriority(IWineD3DSurface *iface, DWORD PriorityNew) DECLSPEC_HIDDEN;
|
||||
DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPriority(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
|
||||
WINED3DRESOURCETYPE WINAPI IWineD3DBaseSurfaceImpl_GetType(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetContainer(IWineD3DSurface* iface,
|
||||
REFIID riid, void **ppContainer) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDesc(IWineD3DSurface *iface, WINED3DSURFACE_DESC *pDesc) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetBltStatus(IWineD3DSurface *iface, DWORD Flags) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetFlipStatus(IWineD3DSurface *iface, DWORD Flags) DECLSPEC_HIDDEN;
|
||||
|
@ -2384,10 +2384,6 @@ interface IWineD3DClipper : IWineD3DBase
|
||||
]
|
||||
interface IWineD3DSurface : IWineD3DResource
|
||||
{
|
||||
HRESULT GetContainer(
|
||||
[in] REFIID riid,
|
||||
[out] void **container
|
||||
);
|
||||
HRESULT GetDesc(
|
||||
[out] WINED3DSURFACE_DESC *desc
|
||||
);
|
||||
@ -2501,10 +2497,6 @@ interface IWineD3DSurface : IWineD3DResource
|
||||
]
|
||||
interface IWineD3DVolume : IWineD3DResource
|
||||
{
|
||||
HRESULT GetContainer(
|
||||
[in] REFIID riid,
|
||||
[out] void **container
|
||||
);
|
||||
HRESULT GetDesc(
|
||||
[out] WINED3DVOLUME_DESC *desc
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user