2009-01-15 09:58:44 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Henri Verbeet for CodeWeavers
|
2015-09-03 00:06:51 +02:00
|
|
|
* Copyright 2015 Józef Kucia for CodeWeavers
|
2009-01-15 09:58:44 +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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#include "d3d11_private.h"
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
/* ID3D11Texture2D methods */
|
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
static inline struct d3d_texture2d *impl_from_ID3D11Texture2D(ID3D11Texture2D *iface)
|
2011-06-01 10:12:44 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture2d, ID3D11Texture2D_iface);
|
2011-06-01 10:12:44 +02:00
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture2d_QueryInterface(ID3D11Texture2D *iface, REFIID riid, void **object)
|
2009-01-15 09:58:44 +01:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2009-01-19 10:39:06 +01:00
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11Texture2D)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11Resource)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2009-01-15 09:58:44 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2015-08-26 00:56:04 +02:00
|
|
|
*object = &texture->ID3D11Texture2D_iface;
|
|
|
|
IUnknown_AddRef((IUnknown *)*object);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
else if (IsEqualGUID(riid, &IID_ID3D10Texture2D)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10Resource)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
|
|
|
*object = &texture->ID3D10Texture2D_iface;
|
|
|
|
IUnknown_AddRef((IUnknown *)*object);
|
2009-01-15 09:58:44 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
if (texture->dxgi_surface)
|
2009-01-19 10:39:06 +01:00
|
|
|
{
|
2015-08-26 00:56:04 +02:00
|
|
|
TRACE("Forwarding to dxgi surface.\n");
|
|
|
|
return IUnknown_QueryInterface(texture->dxgi_surface, riid, object);
|
2009-01-19 10:39:06 +01:00
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
2009-01-15 09:58:44 +01:00
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_texture2d_AddRef(ID3D11Texture2D *iface)
|
2009-01-15 09:58:44 +01:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
ULONG refcount = InterlockedIncrement(&texture->refcount);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", texture, refcount);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2012-07-12 13:44:21 +02:00
|
|
|
if (refcount == 1)
|
2014-02-13 10:14:19 +01:00
|
|
|
{
|
2015-08-26 00:56:06 +02:00
|
|
|
ID3D11Device_AddRef(texture->device);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-08-26 00:56:04 +02:00
|
|
|
wined3d_texture_incref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2014-02-13 10:14:19 +01:00
|
|
|
}
|
2009-09-16 08:37:15 +02:00
|
|
|
|
2009-01-15 09:58:44 +01:00
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_texture2d_Release(ID3D11Texture2D *iface)
|
2009-09-16 08:37:15 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
ULONG refcount = InterlockedDecrement(&texture->refcount);
|
2009-09-16 08:37:15 +02:00
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", texture, refcount);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2009-01-19 10:39:05 +01:00
|
|
|
if (!refcount)
|
2014-02-13 10:14:19 +01:00
|
|
|
{
|
2015-08-26 00:56:06 +02:00
|
|
|
ID3D11Device *device = texture->device;
|
2014-02-13 10:14:19 +01:00
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-08-26 00:56:04 +02:00
|
|
|
wined3d_texture_decref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2014-02-13 10:14:19 +01:00
|
|
|
/* Release the device last, it may cause the wined3d device to be
|
|
|
|
* destroyed. */
|
2015-08-26 00:56:06 +02:00
|
|
|
ID3D11Device_Release(device);
|
2014-02-13 10:14:19 +01:00
|
|
|
}
|
2009-01-19 10:39:05 +01:00
|
|
|
|
2009-01-15 09:58:44 +01:00
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_texture2d_GetDevice(ID3D11Texture2D *iface, ID3D11Device **device)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:06 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = texture->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture2d_GetPrivateData(ID3D11Texture2D *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:05 +02:00
|
|
|
IDXGISurface *dxgi_surface;
|
|
|
|
HRESULT hr;
|
2015-08-26 00:56:04 +02:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
if (texture->dxgi_surface
|
|
|
|
&& SUCCEEDED(IUnknown_QueryInterface(texture->dxgi_surface, &IID_IDXGISurface, (void **)&dxgi_surface)))
|
|
|
|
{
|
|
|
|
hr = IDXGISurface_GetPrivateData(dxgi_surface, guid, data_size, data);
|
|
|
|
IDXGISurface_Release(dxgi_surface);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&texture->private_store, guid, data_size, data);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture2d_SetPrivateData(ID3D11Texture2D *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:05 +02:00
|
|
|
IDXGISurface *dxgi_surface;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
2015-08-26 00:56:04 +02:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
if (texture->dxgi_surface
|
|
|
|
&& SUCCEEDED(IUnknown_QueryInterface(texture->dxgi_surface, &IID_IDXGISurface, (void **)&dxgi_surface)))
|
|
|
|
{
|
|
|
|
hr = IDXGISurface_SetPrivateData(dxgi_surface, guid, data_size, data);
|
|
|
|
IDXGISurface_Release(dxgi_surface);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&texture->private_store, guid, data_size, data);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture2d_SetPrivateDataInterface(ID3D11Texture2D *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-26 00:56:05 +02:00
|
|
|
IDXGISurface *dxgi_surface;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
2015-08-26 00:56:04 +02:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
if (texture->dxgi_surface
|
|
|
|
&& SUCCEEDED(IUnknown_QueryInterface(texture->dxgi_surface, &IID_IDXGISurface, (void **)&dxgi_surface)))
|
|
|
|
{
|
|
|
|
hr = IDXGISurface_SetPrivateDataInterface(dxgi_surface, guid, data);
|
|
|
|
IDXGISurface_Release(dxgi_surface);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&texture->private_store, guid, data);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture2d_GetType(ID3D11Texture2D *iface,
|
|
|
|
D3D11_RESOURCE_DIMENSION *resource_dimension)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, resource_dimension %p.\n", iface, resource_dimension);
|
|
|
|
|
|
|
|
*resource_dimension = D3D11_RESOURCE_DIMENSION_TEXTURE2D;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture2d_SetEvictionPriority(ID3D11Texture2D *iface, UINT eviction_priority)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, eviction_priority %#x stub!\n", iface, eviction_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT STDMETHODCALLTYPE d3d11_texture2d_GetEvictionPriority(ID3D11Texture2D *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture2d_GetDesc(ID3D11Texture2D *iface, D3D11_TEXTURE2D_DESC *desc)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D11Texture2D(iface);
|
2015-08-28 00:39:15 +02:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = texture->desc;
|
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
wined3d_resource_get_desc(wined3d_texture_get_resource(texture->wined3d_texture), &wined3d_desc);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
|
|
|
/* FIXME: Resizing swapchain buffers can cause these to change. We'd like
|
|
|
|
* to get everything from wined3d, but e.g. bind flags don't exist as such
|
|
|
|
* there (yet). */
|
|
|
|
desc->Width = wined3d_desc.width;
|
|
|
|
desc->Height = wined3d_desc.height;
|
|
|
|
desc->Format = dxgi_format_from_wined3dformat(wined3d_desc.format);
|
|
|
|
desc->SampleDesc.Count = wined3d_desc.multisample_type == WINED3D_MULTISAMPLE_NONE
|
|
|
|
? 1 : wined3d_desc.multisample_type;
|
|
|
|
desc->SampleDesc.Quality = wined3d_desc.multisample_quality;
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11Texture2DVtbl d3d11_texture2d_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_texture2d_QueryInterface,
|
|
|
|
d3d11_texture2d_AddRef,
|
|
|
|
d3d11_texture2d_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_texture2d_GetDevice,
|
|
|
|
d3d11_texture2d_GetPrivateData,
|
|
|
|
d3d11_texture2d_SetPrivateData,
|
|
|
|
d3d11_texture2d_SetPrivateDataInterface,
|
|
|
|
/* ID3D11Resource methods */
|
|
|
|
d3d11_texture2d_GetType,
|
|
|
|
d3d11_texture2d_SetEvictionPriority,
|
|
|
|
d3d11_texture2d_GetEvictionPriority,
|
|
|
|
/* ID3D11Texture2D methods */
|
|
|
|
d3d11_texture2d_GetDesc,
|
|
|
|
};
|
|
|
|
|
2015-09-08 01:12:45 +02:00
|
|
|
struct d3d_texture2d *unsafe_impl_from_ID3D11Texture2D(ID3D11Texture2D *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_texture2d_vtbl);
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture2d, ID3D11Texture2D_iface);
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
/* IUnknown methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture2d_QueryInterface(ID3D10Texture2D *iface, REFIID riid, void **object)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_texture2d_QueryInterface(&texture->ID3D11Texture2D_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_texture2d_AddRef(ID3D10Texture2D *iface)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_texture2d_AddRef(&texture->ID3D11Texture2D_iface);
|
|
|
|
}
|
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d_texture2d_wined3d_object_released(void *parent)
|
2015-08-26 00:56:04 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = parent;
|
2015-08-26 00:56:04 +02:00
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
if (texture->dxgi_surface) IUnknown_Release(texture->dxgi_surface);
|
|
|
|
wined3d_private_store_cleanup(&texture->private_store);
|
|
|
|
HeapFree(GetProcessHeap(), 0, texture);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_texture2d_Release(ID3D10Texture2D *iface)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_texture2d_Release(&texture->ID3D11Texture2D_iface);
|
|
|
|
}
|
|
|
|
|
2009-01-15 09:58:44 +01:00
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture2d_GetDevice(ID3D10Texture2D *iface, ID3D10Device **device)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2014-02-13 10:14:19 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-08-26 00:56:06 +02:00
|
|
|
ID3D11Device_QueryInterface(texture->device, &IID_ID3D10Device, (void **)device);
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture2d_GetPrivateData(ID3D10Texture2D *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-02-23 17:59:44 +01:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
2015-02-23 17:59:44 +01:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
return d3d11_texture2d_GetPrivateData(&texture->ID3D11Texture2D_iface, guid, data_size, data);
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture2d_SetPrivateData(ID3D10Texture2D *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-02-23 17:59:42 +01:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
2015-02-23 17:59:42 +01:00
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
return d3d11_texture2d_SetPrivateData(&texture->ID3D11Texture2D_iface, guid, data_size, data);
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture2d_SetPrivateDataInterface(ID3D10Texture2D *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2015-02-23 17:59:43 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-08-26 00:56:05 +02:00
|
|
|
return d3d11_texture2d_SetPrivateDataInterface(&texture->ID3D11Texture2D_iface, guid, data);
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10Resource methods */
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture2d_GetType(ID3D10Texture2D *iface,
|
|
|
|
D3D10_RESOURCE_DIMENSION *resource_dimension)
|
|
|
|
{
|
2009-01-26 09:38:14 +01:00
|
|
|
TRACE("iface %p, resource_dimension %p\n", iface, resource_dimension);
|
|
|
|
|
|
|
|
*resource_dimension = D3D10_RESOURCE_DIMENSION_TEXTURE2D;
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture2d_SetEvictionPriority(ID3D10Texture2D *iface, UINT eviction_priority)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, eviction_priority %u stub!\n", iface, eviction_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT STDMETHODCALLTYPE d3d10_texture2d_GetEvictionPriority(ID3D10Texture2D *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10Texture2D methods */
|
|
|
|
|
2012-07-12 13:44:23 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture2d_Map(ID3D10Texture2D *iface, UINT sub_resource_idx,
|
2009-01-15 09:58:44 +01:00
|
|
|
D3D10_MAP map_type, UINT map_flags, D3D10_MAPPED_TEXTURE2D *mapped_texture)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2012-07-12 13:44:23 +02:00
|
|
|
struct wined3d_map_desc wined3d_map_desc;
|
|
|
|
HRESULT hr;
|
2009-01-15 09:58:44 +01:00
|
|
|
|
2012-07-12 13:44:23 +02:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, map_type %u, map_flags %#x, mapped_texture %p.\n",
|
|
|
|
iface, sub_resource_idx, map_type, map_flags, mapped_texture);
|
|
|
|
|
|
|
|
if (map_flags)
|
|
|
|
FIXME("Ignoring map_flags %#x.\n", map_flags);
|
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-11-05 00:13:40 +01:00
|
|
|
if (SUCCEEDED(hr = wined3d_resource_map(wined3d_texture_get_resource(texture->wined3d_texture), sub_resource_idx,
|
2015-11-02 17:12:28 +01:00
|
|
|
&wined3d_map_desc, NULL, wined3d_map_flags_from_d3d11_map_type(map_type))))
|
2012-07-12 13:44:23 +02:00
|
|
|
{
|
|
|
|
mapped_texture->pData = wined3d_map_desc.data;
|
|
|
|
mapped_texture->RowPitch = wined3d_map_desc.row_pitch;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2012-07-12 13:44:23 +02:00
|
|
|
|
|
|
|
return hr;
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
2012-07-12 13:44:22 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d10_texture2d_Unmap(ID3D10Texture2D *iface, UINT sub_resource_idx)
|
2009-01-15 09:58:44 +01:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2012-07-12 13:44:22 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, sub_resource_idx %u.\n", iface, sub_resource_idx);
|
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-11-05 00:13:40 +01:00
|
|
|
wined3d_resource_unmap(wined3d_texture_get_resource(texture->wined3d_texture), sub_resource_idx);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture2d_GetDesc(ID3D10Texture2D *iface, D3D10_TEXTURE2D_DESC *desc)
|
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *texture = impl_from_ID3D10Texture2D(iface);
|
2015-08-28 00:39:15 +02:00
|
|
|
D3D11_TEXTURE2D_DESC d3d11_desc;
|
2009-01-26 09:38:14 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
2015-08-28 00:39:15 +02:00
|
|
|
d3d11_texture2d_GetDesc(&texture->ID3D11Texture2D_iface, &d3d11_desc);
|
|
|
|
|
|
|
|
desc->Width = d3d11_desc.Width;
|
|
|
|
desc->Height = d3d11_desc.Height;
|
|
|
|
desc->MipLevels = d3d11_desc.MipLevels;
|
|
|
|
desc->ArraySize = d3d11_desc.ArraySize;
|
|
|
|
desc->Format = d3d11_desc.Format;
|
|
|
|
desc->SampleDesc = d3d11_desc.SampleDesc;
|
|
|
|
desc->Usage = d3d10_usage_from_d3d11_usage(d3d11_desc.Usage);
|
|
|
|
desc->BindFlags = d3d10_bind_flags_from_d3d11_bind_flags(d3d11_desc.BindFlags);
|
|
|
|
desc->CPUAccessFlags = d3d10_cpu_access_flags_from_d3d11_cpu_access_flags(d3d11_desc.CPUAccessFlags);
|
|
|
|
desc->MiscFlags = d3d10_resource_misc_flags_from_d3d11_resource_misc_flags(d3d11_desc.MiscFlags);
|
2009-01-15 09:58:44 +01:00
|
|
|
}
|
|
|
|
|
2009-09-11 19:01:15 +02:00
|
|
|
static const struct ID3D10Texture2DVtbl d3d10_texture2d_vtbl =
|
2009-01-15 09:58:44 +01:00
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_texture2d_QueryInterface,
|
|
|
|
d3d10_texture2d_AddRef,
|
|
|
|
d3d10_texture2d_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_texture2d_GetDevice,
|
|
|
|
d3d10_texture2d_GetPrivateData,
|
|
|
|
d3d10_texture2d_SetPrivateData,
|
|
|
|
d3d10_texture2d_SetPrivateDataInterface,
|
|
|
|
/* ID3D10Resource methods */
|
|
|
|
d3d10_texture2d_GetType,
|
|
|
|
d3d10_texture2d_SetEvictionPriority,
|
|
|
|
d3d10_texture2d_GetEvictionPriority,
|
|
|
|
/* ID3D10Texture2D methods */
|
|
|
|
d3d10_texture2d_Map,
|
|
|
|
d3d10_texture2d_Unmap,
|
|
|
|
d3d10_texture2d_GetDesc,
|
|
|
|
};
|
2009-09-11 19:01:15 +02:00
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *unsafe_impl_from_ID3D10Texture2D(ID3D10Texture2D *iface)
|
2014-08-04 12:17:24 +02:00
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d10_texture2d_vtbl);
|
2015-08-30 22:44:45 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture2d, ID3D10Texture2D_iface);
|
2014-08-04 12:17:24 +02:00
|
|
|
}
|
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
static const struct wined3d_parent_ops d3d_texture2d_wined3d_parent_ops =
|
2009-09-16 08:37:15 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
d3d_texture2d_wined3d_object_released,
|
2009-09-16 08:37:15 +02:00
|
|
|
};
|
|
|
|
|
2016-09-07 20:50:39 +02:00
|
|
|
static BOOL is_gdi_compatible_texture(const D3D11_TEXTURE2D_DESC *desc)
|
|
|
|
{
|
|
|
|
if (!(desc->Format == DXGI_FORMAT_B8G8R8A8_UNORM
|
|
|
|
|| desc->Format == DXGI_FORMAT_B8G8R8A8_TYPELESS
|
|
|
|
|| desc->Format == DXGI_FORMAT_B8G8R8A8_UNORM_SRGB))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (desc->Usage != D3D11_USAGE_DEFAULT)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
static HRESULT d3d_texture2d_init(struct d3d_texture2d *texture, struct d3d_device *device,
|
2015-08-30 22:44:42 +02:00
|
|
|
const D3D11_TEXTURE2D_DESC *desc, const D3D11_SUBRESOURCE_DATA *data)
|
2009-09-11 19:01:15 +02:00
|
|
|
{
|
2013-06-05 11:06:11 +02:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2014-12-10 13:26:38 +01:00
|
|
|
unsigned int levels;
|
2016-09-07 20:50:39 +02:00
|
|
|
DWORD flags = 0;
|
2009-09-11 19:01:15 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2015-08-26 00:56:04 +02:00
|
|
|
texture->ID3D11Texture2D_iface.lpVtbl = &d3d11_texture2d_vtbl;
|
2011-06-01 10:12:44 +02:00
|
|
|
texture->ID3D10Texture2D_iface.lpVtbl = &d3d10_texture2d_vtbl;
|
2009-09-11 19:01:15 +02:00
|
|
|
texture->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-02-23 17:59:42 +01:00
|
|
|
wined3d_private_store_init(&texture->private_store);
|
2009-09-11 19:01:15 +02:00
|
|
|
texture->desc = *desc;
|
|
|
|
|
2012-07-12 13:44:21 +02:00
|
|
|
if (desc->SampleDesc.Count > 1)
|
|
|
|
FIXME("Multisampled textures not implemented.\n");
|
2009-09-11 19:01:15 +02:00
|
|
|
|
2016-01-27 00:06:23 +01:00
|
|
|
wined3d_desc.resource_type = WINED3D_RTYPE_TEXTURE_2D;
|
2013-06-05 11:06:11 +02:00
|
|
|
wined3d_desc.format = wined3dformat_from_dxgi_format(desc->Format);
|
|
|
|
wined3d_desc.multisample_type = desc->SampleDesc.Count > 1 ? desc->SampleDesc.Count : WINED3D_MULTISAMPLE_NONE;
|
|
|
|
wined3d_desc.multisample_quality = desc->SampleDesc.Quality;
|
2015-09-01 00:27:35 +02:00
|
|
|
wined3d_desc.usage = wined3d_usage_from_d3d11(desc->BindFlags, desc->Usage);
|
2013-06-05 11:06:11 +02:00
|
|
|
wined3d_desc.pool = WINED3D_POOL_DEFAULT;
|
|
|
|
wined3d_desc.width = desc->Width;
|
|
|
|
wined3d_desc.height = desc->Height;
|
|
|
|
wined3d_desc.depth = 1;
|
|
|
|
wined3d_desc.size = 0;
|
|
|
|
|
2014-12-10 13:26:38 +01:00
|
|
|
levels = desc->MipLevels ? desc->MipLevels : wined3d_log2i(max(desc->Width, desc->Height)) + 1;
|
|
|
|
|
2016-09-07 20:50:39 +02:00
|
|
|
if (desc->MiscFlags & D3D11_RESOURCE_MISC_GDI_COMPATIBLE)
|
|
|
|
{
|
|
|
|
if (is_gdi_compatible_texture(desc))
|
|
|
|
flags |= WINED3D_TEXTURE_CREATE_GET_DC;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN("Incompatible description used to create GDI compatible texture.\n");
|
|
|
|
wined3d_private_store_cleanup(&texture->private_store);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 13:24:58 +01:00
|
|
|
if (FAILED(hr = wined3d_texture_create(device->wined3d_device, &wined3d_desc,
|
2016-09-07 20:50:39 +02:00
|
|
|
desc->ArraySize, levels, flags, (struct wined3d_sub_resource_data *)data,
|
2016-04-25 12:25:29 +02:00
|
|
|
texture, &d3d_texture2d_wined3d_parent_ops, &texture->wined3d_texture)))
|
2012-07-12 13:44:21 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d texture, hr %#x.\n", hr);
|
2015-02-23 17:59:42 +01:00
|
|
|
wined3d_private_store_cleanup(&texture->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2016-03-15 10:52:45 +01:00
|
|
|
if (hr == WINED3DERR_NOTAVAILABLE || hr == WINED3DERR_INVALIDCALL)
|
2016-01-28 00:15:44 +01:00
|
|
|
hr = E_INVALIDARG;
|
2012-07-12 13:44:21 +02:00
|
|
|
return hr;
|
2009-09-11 19:01:15 +02:00
|
|
|
}
|
2014-12-10 13:26:38 +01:00
|
|
|
texture->desc.MipLevels = levels;
|
2009-09-11 19:01:15 +02:00
|
|
|
|
2015-08-06 00:21:57 +02:00
|
|
|
if (desc->MipLevels == 1 && desc->ArraySize == 1)
|
|
|
|
{
|
|
|
|
IWineDXGIDevice *wine_device;
|
|
|
|
|
|
|
|
if (FAILED(hr = ID3D10Device1_QueryInterface(&device->ID3D10Device1_iface, &IID_IWineDXGIDevice,
|
|
|
|
(void **)&wine_device)))
|
|
|
|
{
|
|
|
|
ERR("Device should implement IWineDXGIDevice.\n");
|
|
|
|
wined3d_texture_decref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2015-08-06 00:21:57 +02:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2016-09-01 11:42:54 +02:00
|
|
|
hr = IWineDXGIDevice_create_surface(wine_device, texture->wined3d_texture, 0, NULL,
|
|
|
|
(IUnknown *)&texture->ID3D10Texture2D_iface, (void **)&texture->dxgi_surface);
|
2015-08-06 00:21:57 +02:00
|
|
|
IWineDXGIDevice_Release(wine_device);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Failed to create DXGI surface, returning %#x\n", hr);
|
|
|
|
texture->dxgi_surface = NULL;
|
|
|
|
wined3d_texture_decref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2015-08-06 00:21:57 +02:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2015-08-06 00:21:57 +02:00
|
|
|
|
2015-08-26 00:56:06 +02:00
|
|
|
texture->device = &device->ID3D11Device_iface;
|
|
|
|
ID3D11Device_AddRef(texture->device);
|
2014-02-13 10:14:19 +01:00
|
|
|
|
2009-09-11 19:01:15 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
2010-10-14 13:04:01 +02:00
|
|
|
|
2015-08-30 22:44:42 +02:00
|
|
|
HRESULT d3d_texture2d_create(struct d3d_device *device, const D3D11_TEXTURE2D_DESC *desc,
|
2015-08-30 22:44:45 +02:00
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_texture2d **texture)
|
2015-08-30 22:44:42 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *object;
|
2015-08-30 22:44:42 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (FAILED(hr = d3d_texture2d_init(object, device, desc, data)))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize texture, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created texture %p.\n", object);
|
|
|
|
*texture = object;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
/* ID3D11Texture3D methods */
|
|
|
|
|
|
|
|
static inline struct d3d_texture3d *impl_from_ID3D11Texture3D(ID3D11Texture3D *iface)
|
2011-06-01 10:16:55 +02:00
|
|
|
{
|
2015-09-01 00:27:33 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture3d, ID3D11Texture3D_iface);
|
2011-06-01 10:16:55 +02:00
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture3d_QueryInterface(ID3D11Texture3D *iface, REFIID riid, void **object)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:33 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
|
|
|
|
2010-10-14 13:04:01 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_ID3D11Texture3D)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11Resource)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D11DeviceChild)
|
2010-10-14 13:04:01 +02:00
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2015-09-01 00:27:33 +02:00
|
|
|
else if (IsEqualGUID(riid, &IID_ID3D10Texture3D)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10Resource)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D10DeviceChild))
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*object = &texture->ID3D10Texture3D_iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2010-10-14 13:04:01 +02:00
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_texture3d_AddRef(ID3D11Texture3D *iface)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:33 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
2010-10-14 13:04:01 +02:00
|
|
|
ULONG refcount = InterlockedIncrement(&texture->refcount);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", texture, refcount);
|
|
|
|
|
2011-03-15 18:19:33 +01:00
|
|
|
if (refcount == 1)
|
2014-02-13 10:14:20 +01:00
|
|
|
{
|
2015-09-01 00:27:34 +02:00
|
|
|
ID3D11Device_AddRef(texture->device);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_incref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2014-02-13 10:14:20 +01:00
|
|
|
}
|
2010-10-14 13:04:01 +02:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:32 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d_texture3d_wined3d_object_released(void *parent)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = parent;
|
2015-03-11 11:13:51 +01:00
|
|
|
|
|
|
|
wined3d_private_store_cleanup(&texture->private_store);
|
2010-10-14 13:04:01 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
static ULONG STDMETHODCALLTYPE d3d11_texture3d_Release(ID3D11Texture3D *iface)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:33 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
2010-10-14 13:04:01 +02:00
|
|
|
ULONG refcount = InterlockedDecrement(&texture->refcount);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", texture, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
2014-02-13 10:14:20 +01:00
|
|
|
{
|
2015-09-01 00:27:34 +02:00
|
|
|
ID3D11Device *device = texture->device;
|
2014-02-13 10:14:20 +01:00
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2011-03-18 19:10:59 +01:00
|
|
|
wined3d_texture_decref(texture->wined3d_texture);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2014-02-13 10:14:20 +01:00
|
|
|
/* Release the device last, it may cause the wined3d device to be
|
|
|
|
* destroyed. */
|
2015-09-01 00:27:34 +02:00
|
|
|
ID3D11Device_Release(device);
|
2014-02-13 10:14:20 +01:00
|
|
|
}
|
2010-10-14 13:04:01 +02:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d11_texture3d_GetDevice(ID3D11Texture3D *iface, ID3D11Device **device)
|
|
|
|
{
|
2015-09-01 00:27:34 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
|
|
|
*device = texture->device;
|
|
|
|
ID3D11Device_AddRef(*device);
|
2015-09-01 00:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture3d_GetPrivateData(ID3D11Texture3D *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-09-03 00:06:51 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
2015-09-01 00:27:33 +02:00
|
|
|
|
2015-09-03 00:06:51 +02:00
|
|
|
return d3d_get_private_data(&texture->private_store, guid, data_size, data);
|
2015-09-01 00:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture3d_SetPrivateData(ID3D11Texture3D *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-09-03 00:06:51 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n", iface, debugstr_guid(guid), data_size, data);
|
2015-09-01 00:27:33 +02:00
|
|
|
|
2015-09-03 00:06:51 +02:00
|
|
|
return d3d_set_private_data(&texture->private_store, guid, data_size, data);
|
2015-09-01 00:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d11_texture3d_SetPrivateDataInterface(ID3D11Texture3D *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-09-03 00:06:51 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
2015-09-01 00:27:33 +02:00
|
|
|
|
2015-09-03 00:06:51 +02:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return d3d_set_private_data_interface(&texture->private_store, guid, data);
|
2015-09-01 00:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture3d_GetType(ID3D11Texture3D *iface,
|
|
|
|
D3D11_RESOURCE_DIMENSION *resource_dimension)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, resource_dimension %p.\n", iface, resource_dimension);
|
|
|
|
|
|
|
|
*resource_dimension = D3D11_RESOURCE_DIMENSION_TEXTURE3D;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture3d_SetEvictionPriority(ID3D11Texture3D *iface, UINT eviction_priority)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, eviction_priority %#x stub!\n", iface, eviction_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT STDMETHODCALLTYPE d3d11_texture3d_GetEvictionPriority(ID3D11Texture3D *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d11_texture3d_GetDesc(ID3D11Texture3D *iface, D3D11_TEXTURE3D_DESC *desc)
|
|
|
|
{
|
2015-09-01 00:27:35 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D11Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = texture->desc;
|
2015-09-01 00:27:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D11Texture3DVtbl d3d11_texture3d_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d11_texture3d_QueryInterface,
|
|
|
|
d3d11_texture3d_AddRef,
|
|
|
|
d3d11_texture3d_Release,
|
|
|
|
/* ID3D11DeviceChild methods */
|
|
|
|
d3d11_texture3d_GetDevice,
|
|
|
|
d3d11_texture3d_GetPrivateData,
|
|
|
|
d3d11_texture3d_SetPrivateData,
|
|
|
|
d3d11_texture3d_SetPrivateDataInterface,
|
|
|
|
/* ID3D11Resource methods */
|
|
|
|
d3d11_texture3d_GetType,
|
|
|
|
d3d11_texture3d_SetEvictionPriority,
|
|
|
|
d3d11_texture3d_GetEvictionPriority,
|
|
|
|
/* ID3D11Texture3D methods */
|
|
|
|
d3d11_texture3d_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10Texture3D methods */
|
|
|
|
|
|
|
|
static inline struct d3d_texture3d *impl_from_ID3D10Texture3D(ID3D10Texture3D *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture3d, ID3D10Texture3D_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture3d_QueryInterface(ID3D10Texture3D *iface, REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
return d3d11_texture3d_QueryInterface(&texture->ID3D11Texture3D_iface, riid, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_texture3d_AddRef(ID3D10Texture3D *iface)
|
|
|
|
{
|
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_texture3d_AddRef(&texture->ID3D11Texture3D_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_texture3d_Release(ID3D10Texture3D *iface)
|
|
|
|
{
|
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return d3d11_texture3d_Release(&texture->ID3D11Texture3D_iface);
|
|
|
|
}
|
|
|
|
|
2010-10-14 13:04:01 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d10_texture3d_GetDevice(ID3D10Texture3D *iface, ID3D10Device **device)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2014-02-13 10:14:20 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
|
|
|
|
2015-09-01 00:27:34 +02:00
|
|
|
ID3D11Device_QueryInterface(texture->device, &IID_ID3D10Device, (void **)device);
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture3d_GetPrivateData(ID3D10Texture3D *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2015-03-11 11:13:53 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %p, data %p.\n",
|
2010-10-14 13:04:01 +02:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_get_private_data(&texture->private_store, guid, data_size, data);
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture3d_SetPrivateData(ID3D10Texture3D *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2015-03-11 11:13:51 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, guid %s, data_size %u, data %p.\n",
|
2010-10-14 13:04:01 +02:00
|
|
|
iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data(&texture->private_store, guid, data_size, data);
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture3d_SetPrivateDataInterface(ID3D10Texture3D *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2010-10-14 13:04:01 +02:00
|
|
|
|
2015-03-11 11:13:52 +01:00
|
|
|
TRACE("iface %p, guid %s, data %p.\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
return d3d_set_private_data_interface(&texture->private_store, guid, data);
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture3d_GetType(ID3D10Texture3D *iface,
|
|
|
|
D3D10_RESOURCE_DIMENSION *resource_dimension)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, resource_dimension %p.\n", iface, resource_dimension);
|
|
|
|
|
|
|
|
*resource_dimension = D3D10_RESOURCE_DIMENSION_TEXTURE3D;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture3d_SetEvictionPriority(ID3D10Texture3D *iface, UINT eviction_priority)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, eviction_priority %u stub!\n", iface, eviction_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static UINT STDMETHODCALLTYPE d3d10_texture3d_GetEvictionPriority(ID3D10Texture3D *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-14 21:02:57 +01:00
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_texture3d_Map(ID3D10Texture3D *iface, UINT sub_resource_idx,
|
2010-10-14 13:04:01 +02:00
|
|
|
D3D10_MAP map_type, UINT map_flags, D3D10_MAPPED_TEXTURE3D *mapped_texture)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2012-04-12 22:49:04 +02:00
|
|
|
struct wined3d_map_desc wined3d_map_desc;
|
2010-10-20 12:12:29 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2011-03-14 21:02:57 +01:00
|
|
|
TRACE("iface %p, sub_resource_idx %u, map_type %u, map_flags %#x, mapped_texture %p.\n",
|
|
|
|
iface, sub_resource_idx, map_type, map_flags, mapped_texture);
|
2010-10-14 13:04:01 +02:00
|
|
|
|
2010-10-20 12:12:29 +02:00
|
|
|
if (map_flags)
|
|
|
|
FIXME("Ignoring map_flags %#x.\n", map_flags);
|
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-11-05 00:13:40 +01:00
|
|
|
if (SUCCEEDED(hr = wined3d_resource_map(wined3d_texture_get_resource(texture->wined3d_texture), sub_resource_idx,
|
2015-11-02 17:12:28 +01:00
|
|
|
&wined3d_map_desc, NULL, wined3d_map_flags_from_d3d11_map_type(map_type))))
|
2010-10-20 12:12:29 +02:00
|
|
|
{
|
2011-12-05 22:06:57 +01:00
|
|
|
mapped_texture->pData = wined3d_map_desc.data;
|
|
|
|
mapped_texture->RowPitch = wined3d_map_desc.row_pitch;
|
|
|
|
mapped_texture->DepthPitch = wined3d_map_desc.slice_pitch;
|
2010-10-20 12:12:29 +02:00
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2010-10-20 12:12:29 +02:00
|
|
|
|
|
|
|
return hr;
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
2011-03-14 21:02:58 +01:00
|
|
|
static void STDMETHODCALLTYPE d3d10_texture3d_Unmap(ID3D10Texture3D *iface, UINT sub_resource_idx)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2011-03-14 21:02:58 +01:00
|
|
|
|
|
|
|
TRACE("iface %p, sub_resource_idx %u.\n", iface, sub_resource_idx);
|
|
|
|
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-11-05 00:13:40 +01:00
|
|
|
wined3d_resource_unmap(wined3d_texture_get_resource(texture->wined3d_texture), sub_resource_idx);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d10_texture3d_GetDesc(ID3D10Texture3D *iface, D3D10_TEXTURE3D_DESC *desc)
|
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d *texture = impl_from_ID3D10Texture3D(iface);
|
2015-09-01 00:27:35 +02:00
|
|
|
D3D11_TEXTURE3D_DESC d3d11_desc;
|
2010-10-14 13:04:01 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
2015-09-01 00:27:35 +02:00
|
|
|
d3d11_texture3d_GetDesc(&texture->ID3D11Texture3D_iface, &d3d11_desc);
|
|
|
|
|
|
|
|
desc->Width = d3d11_desc.Width;
|
|
|
|
desc->Height = d3d11_desc.Height;
|
|
|
|
desc->Depth = d3d11_desc.Depth;
|
|
|
|
desc->MipLevels = d3d11_desc.MipLevels;
|
|
|
|
desc->Format = d3d11_desc.Format;
|
|
|
|
desc->Usage = d3d10_usage_from_d3d11_usage(d3d11_desc.Usage);
|
|
|
|
desc->BindFlags = d3d10_bind_flags_from_d3d11_bind_flags(d3d11_desc.BindFlags);
|
|
|
|
desc->CPUAccessFlags = d3d10_cpu_access_flags_from_d3d11_cpu_access_flags(d3d11_desc.CPUAccessFlags);
|
|
|
|
desc->MiscFlags = d3d10_resource_misc_flags_from_d3d11_resource_misc_flags(d3d11_desc.MiscFlags);
|
2010-10-14 13:04:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10Texture3DVtbl d3d10_texture3d_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_texture3d_QueryInterface,
|
|
|
|
d3d10_texture3d_AddRef,
|
|
|
|
d3d10_texture3d_Release,
|
|
|
|
/* ID3D10DeviceChild methods */
|
|
|
|
d3d10_texture3d_GetDevice,
|
|
|
|
d3d10_texture3d_GetPrivateData,
|
|
|
|
d3d10_texture3d_SetPrivateData,
|
|
|
|
d3d10_texture3d_SetPrivateDataInterface,
|
|
|
|
/* ID3D10Resource methods */
|
|
|
|
d3d10_texture3d_GetType,
|
|
|
|
d3d10_texture3d_SetEvictionPriority,
|
|
|
|
d3d10_texture3d_GetEvictionPriority,
|
|
|
|
/* ID3D10Texture3D methods */
|
|
|
|
d3d10_texture3d_Map,
|
|
|
|
d3d10_texture3d_Unmap,
|
|
|
|
d3d10_texture3d_GetDesc,
|
|
|
|
};
|
|
|
|
|
2015-11-04 23:37:12 +01:00
|
|
|
struct d3d_texture3d *unsafe_impl_from_ID3D11Texture3D(ID3D11Texture3D *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d11_texture3d_vtbl);
|
|
|
|
return impl_from_ID3D11Texture3D(iface);
|
|
|
|
}
|
|
|
|
|
2015-09-01 00:27:32 +02:00
|
|
|
static const struct wined3d_parent_ops d3d_texture3d_wined3d_parent_ops =
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:32 +02:00
|
|
|
d3d_texture3d_wined3d_object_released,
|
2010-10-14 13:04:01 +02:00
|
|
|
};
|
|
|
|
|
2015-09-01 00:27:36 +02:00
|
|
|
static HRESULT d3d_texture3d_init(struct d3d_texture3d *texture, struct d3d_device *device,
|
|
|
|
const D3D11_TEXTURE3D_DESC *desc, const D3D11_SUBRESOURCE_DATA *data)
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2013-06-06 10:51:46 +02:00
|
|
|
struct wined3d_resource_desc wined3d_desc;
|
2014-12-10 13:26:38 +01:00
|
|
|
unsigned int levels;
|
2010-10-14 13:04:01 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
texture->ID3D11Texture3D_iface.lpVtbl = &d3d11_texture3d_vtbl;
|
2011-06-01 10:16:55 +02:00
|
|
|
texture->ID3D10Texture3D_iface.lpVtbl = &d3d10_texture3d_vtbl;
|
2010-10-14 13:04:01 +02:00
|
|
|
texture->refcount = 1;
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_lock();
|
2015-03-11 11:13:51 +01:00
|
|
|
wined3d_private_store_init(&texture->private_store);
|
2010-10-14 13:04:01 +02:00
|
|
|
texture->desc = *desc;
|
|
|
|
|
2016-01-27 00:06:24 +01:00
|
|
|
wined3d_desc.resource_type = WINED3D_RTYPE_TEXTURE_3D;
|
2013-06-06 10:51:46 +02:00
|
|
|
wined3d_desc.format = wined3dformat_from_dxgi_format(desc->Format);
|
|
|
|
wined3d_desc.multisample_type = WINED3D_MULTISAMPLE_NONE;
|
|
|
|
wined3d_desc.multisample_quality = 0;
|
2015-09-01 00:27:35 +02:00
|
|
|
wined3d_desc.usage = wined3d_usage_from_d3d11(desc->BindFlags, desc->Usage);
|
2013-06-06 10:51:46 +02:00
|
|
|
wined3d_desc.pool = WINED3D_POOL_DEFAULT;
|
|
|
|
wined3d_desc.width = desc->Width;
|
|
|
|
wined3d_desc.height = desc->Height;
|
|
|
|
wined3d_desc.depth = desc->Depth;
|
|
|
|
wined3d_desc.size = 0;
|
|
|
|
|
2014-12-10 13:26:38 +01:00
|
|
|
levels = desc->MipLevels ? desc->MipLevels : wined3d_log2i(max(max(desc->Width, desc->Height), desc->Depth)) + 1;
|
|
|
|
|
2015-01-05 13:24:58 +01:00
|
|
|
if (FAILED(hr = wined3d_texture_create(device->wined3d_device, &wined3d_desc,
|
2016-04-25 12:25:29 +02:00
|
|
|
1, levels, 0, (struct wined3d_sub_resource_data *)data, texture,
|
2015-09-01 00:27:32 +02:00
|
|
|
&d3d_texture3d_wined3d_parent_ops, &texture->wined3d_texture)))
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to create wined3d texture, hr %#x.\n", hr);
|
2015-03-11 11:13:51 +01:00
|
|
|
wined3d_private_store_cleanup(&texture->private_store);
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2016-03-15 10:52:45 +01:00
|
|
|
if (hr == WINED3DERR_INVALIDCALL)
|
|
|
|
hr = E_INVALIDARG;
|
2010-10-14 13:04:01 +02:00
|
|
|
return hr;
|
|
|
|
}
|
2015-08-12 17:37:08 +02:00
|
|
|
wined3d_mutex_unlock();
|
2014-12-10 13:26:38 +01:00
|
|
|
texture->desc.MipLevels = levels;
|
2010-10-14 13:04:01 +02:00
|
|
|
|
2015-09-01 00:27:34 +02:00
|
|
|
texture->device = &device->ID3D11Device_iface;
|
|
|
|
ID3D11Device_AddRef(texture->device);
|
2014-02-13 10:14:20 +01:00
|
|
|
|
2010-10-14 13:04:01 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
2015-09-01 00:27:36 +02:00
|
|
|
|
|
|
|
HRESULT d3d_texture3d_create(struct d3d_device *device, const D3D11_TEXTURE3D_DESC *desc,
|
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_texture3d **texture)
|
|
|
|
{
|
|
|
|
struct d3d_texture3d *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (FAILED(hr = d3d_texture3d_init(object, device, desc, data)))
|
|
|
|
{
|
|
|
|
WARN("Failed to initialize texture, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created texture %p.\n", object);
|
|
|
|
*texture = object;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|