d3d10core: Implement device_parent_CreateVolume().
[wine.git] / dlls / d3d10core / texture2d.c
blob4ade9ab8382ef1fa8e3d4c95acbd468f5fee6cc4
1 /*
2 * Copyright 2009 Henri Verbeet for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "config.h"
21 #include "wine/port.h"
23 #include "d3d10core_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(d3d10core);
27 /* IUnknown methods */
29 static HRESULT STDMETHODCALLTYPE d3d10_texture2d_QueryInterface(ID3D10Texture2D *iface, REFIID riid, void **object)
31 struct d3d10_texture2d *This = (struct d3d10_texture2d *)iface;
33 TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
35 if (IsEqualGUID(riid, &IID_ID3D10Texture2D)
36 || IsEqualGUID(riid, &IID_ID3D10Resource)
37 || IsEqualGUID(riid, &IID_ID3D10DeviceChild)
38 || IsEqualGUID(riid, &IID_IUnknown))
40 IUnknown_AddRef(iface);
41 *object = iface;
42 return S_OK;
45 if (This->dxgi_surface)
47 TRACE("Forwarding to dxgi surface\n");
48 return IDXGISurface_QueryInterface(This->dxgi_surface, riid, object);
51 WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
53 *object = NULL;
54 return E_NOINTERFACE;
57 static ULONG STDMETHODCALLTYPE d3d10_texture2d_AddRef(ID3D10Texture2D *iface)
59 struct d3d10_texture2d *This = (struct d3d10_texture2d *)iface;
60 ULONG refcount = InterlockedIncrement(&This->refcount);
62 TRACE("%p increasing refcount to %u\n", This, refcount);
64 if (refcount == 1 && This->wined3d_surface) IWineD3DSurface_AddRef(This->wined3d_surface);
66 return refcount;
69 static void STDMETHODCALLTYPE d3d10_texture2d_wined3d_object_released(void *parent)
71 struct d3d10_texture2d *This = parent;
73 if (This->dxgi_surface) IDXGISurface_Release(This->dxgi_surface);
74 HeapFree(GetProcessHeap(), 0, This);
77 static ULONG STDMETHODCALLTYPE d3d10_texture2d_Release(ID3D10Texture2D *iface)
79 struct d3d10_texture2d *This = (struct d3d10_texture2d *)iface;
80 ULONG refcount = InterlockedDecrement(&This->refcount);
82 TRACE("%p decreasing refcount to %u\n", This, refcount);
84 if (!refcount)
86 if (This->wined3d_surface) IWineD3DSurface_Release(This->wined3d_surface);
87 else d3d10_texture2d_wined3d_object_released(This);
90 return refcount;
93 /* ID3D10DeviceChild methods */
95 static void STDMETHODCALLTYPE d3d10_texture2d_GetDevice(ID3D10Texture2D *iface, ID3D10Device **device)
97 FIXME("iface %p, device %p stub!\n", iface, device);
100 static HRESULT STDMETHODCALLTYPE d3d10_texture2d_GetPrivateData(ID3D10Texture2D *iface,
101 REFGUID guid, UINT *data_size, void *data)
103 FIXME("iface %p, guid %s, data_size %p, data %p stub!\n",
104 iface, debugstr_guid(guid), data_size, data);
106 return E_NOTIMPL;
109 static HRESULT STDMETHODCALLTYPE d3d10_texture2d_SetPrivateData(ID3D10Texture2D *iface,
110 REFGUID guid, UINT data_size, const void *data)
112 FIXME("iface %p, guid %s, data_size %u, data %p stub!\n",
113 iface, debugstr_guid(guid), data_size, data);
115 return E_NOTIMPL;
118 static HRESULT STDMETHODCALLTYPE d3d10_texture2d_SetPrivateDataInterface(ID3D10Texture2D *iface,
119 REFGUID guid, const IUnknown *data)
121 FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
123 return E_NOTIMPL;
126 /* ID3D10Resource methods */
128 static void STDMETHODCALLTYPE d3d10_texture2d_GetType(ID3D10Texture2D *iface,
129 D3D10_RESOURCE_DIMENSION *resource_dimension)
131 TRACE("iface %p, resource_dimension %p\n", iface, resource_dimension);
133 *resource_dimension = D3D10_RESOURCE_DIMENSION_TEXTURE2D;
136 static void STDMETHODCALLTYPE d3d10_texture2d_SetEvictionPriority(ID3D10Texture2D *iface, UINT eviction_priority)
138 FIXME("iface %p, eviction_priority %u stub!\n", iface, eviction_priority);
141 static UINT STDMETHODCALLTYPE d3d10_texture2d_GetEvictionPriority(ID3D10Texture2D *iface)
143 FIXME("iface %p stub!\n", iface);
145 return 0;
148 /* ID3D10Texture2D methods */
150 static HRESULT STDMETHODCALLTYPE d3d10_texture2d_Map(ID3D10Texture2D *iface, UINT sub_resource,
151 D3D10_MAP map_type, UINT map_flags, D3D10_MAPPED_TEXTURE2D *mapped_texture)
153 FIXME("iface %p, sub_resource %u, map_type %u, map_flags %#x, mapped_texture %p stub!\n",
154 iface, sub_resource, map_type, map_flags, mapped_texture);
156 return E_NOTIMPL;
159 static void STDMETHODCALLTYPE d3d10_texture2d_Unmap(ID3D10Texture2D *iface, UINT sub_resource)
161 FIXME("iface %p, sub_resource %u stub!\n", iface, sub_resource);
164 static void STDMETHODCALLTYPE d3d10_texture2d_GetDesc(ID3D10Texture2D *iface, D3D10_TEXTURE2D_DESC *desc)
166 struct d3d10_texture2d *This = (struct d3d10_texture2d *)iface;
168 TRACE("iface %p, desc %p\n", iface, desc);
170 *desc = This->desc;
173 static const struct ID3D10Texture2DVtbl d3d10_texture2d_vtbl =
175 /* IUnknown methods */
176 d3d10_texture2d_QueryInterface,
177 d3d10_texture2d_AddRef,
178 d3d10_texture2d_Release,
179 /* ID3D10DeviceChild methods */
180 d3d10_texture2d_GetDevice,
181 d3d10_texture2d_GetPrivateData,
182 d3d10_texture2d_SetPrivateData,
183 d3d10_texture2d_SetPrivateDataInterface,
184 /* ID3D10Resource methods */
185 d3d10_texture2d_GetType,
186 d3d10_texture2d_SetEvictionPriority,
187 d3d10_texture2d_GetEvictionPriority,
188 /* ID3D10Texture2D methods */
189 d3d10_texture2d_Map,
190 d3d10_texture2d_Unmap,
191 d3d10_texture2d_GetDesc,
194 static const struct wined3d_parent_ops d3d10_texture2d_wined3d_parent_ops =
196 d3d10_texture2d_wined3d_object_released,
199 HRESULT d3d10_texture2d_init(struct d3d10_texture2d *texture, struct d3d10_device *device,
200 const D3D10_TEXTURE2D_DESC *desc)
202 HRESULT hr;
204 texture->vtbl = &d3d10_texture2d_vtbl;
205 texture->refcount = 1;
206 texture->desc = *desc;
208 if (desc->MipLevels == 1 && desc->ArraySize == 1)
210 IWineDXGIDevice *wine_device;
212 hr = ID3D10Device_QueryInterface((ID3D10Device *)device, &IID_IWineDXGIDevice, (void **)&wine_device);
213 if (FAILED(hr))
215 ERR("Device should implement IWineDXGIDevice\n");
216 return E_FAIL;
219 hr = IWineDXGIDevice_create_surface(wine_device, NULL, 0, NULL,
220 (IUnknown *)texture, (void **)&texture->dxgi_surface);
221 IWineDXGIDevice_Release(wine_device);
222 if (FAILED(hr))
224 ERR("Failed to create DXGI surface, returning %#x\n", hr);
225 return hr;
228 FIXME("Implement DXGI<->wined3d usage conversion\n");
230 hr = IWineD3DDevice_CreateSurface(device->wined3d_device, desc->Width, desc->Height,
231 wined3dformat_from_dxgi_format(desc->Format), FALSE, FALSE, 0, desc->Usage, WINED3DPOOL_DEFAULT,
232 desc->SampleDesc.Count > 1 ? desc->SampleDesc.Count : WINED3DMULTISAMPLE_NONE,
233 desc->SampleDesc.Quality, SURFACE_OPENGL, texture, &d3d10_texture2d_wined3d_parent_ops,
234 &texture->wined3d_surface);
235 if (FAILED(hr))
237 ERR("CreateSurface failed, returning %#x\n", hr);
238 IDXGISurface_Release(texture->dxgi_surface);
239 return hr;
243 return S_OK;