shlwapi: Beginning implementation of IUnknown_QueryServiceForWebBrowserApp.
[wine] / dlls / d3d10core / device.c
1 /*
2  * Copyright 2008-2009 Henri Verbeet for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  *
18  */
19
20 #include "config.h"
21 #include "wine/port.h"
22
23 #include "d3d10core_private.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(d3d10core);
26
27 /* Inner IUnknown methods */
28
29 static inline struct d3d10_device *d3d10_device_from_inner_unknown(IUnknown *iface)
30 {
31     return (struct d3d10_device *)((char*)iface - FIELD_OFFSET(struct d3d10_device, inner_unknown_vtbl));
32 }
33
34 static HRESULT STDMETHODCALLTYPE d3d10_device_inner_QueryInterface(IUnknown *iface, REFIID riid, void **object)
35 {
36     struct d3d10_device *This = d3d10_device_from_inner_unknown(iface);
37
38     TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
39
40     if (IsEqualGUID(riid, &IID_IUnknown)
41             || IsEqualGUID(riid, &IID_ID3D10Device))
42     {
43         IUnknown_AddRef((IUnknown *)This);
44         *object = This;
45         return S_OK;
46     }
47
48     if (IsEqualGUID(riid, &IID_IWineD3DDeviceParent))
49     {
50         IUnknown_AddRef((IUnknown *)&This->device_parent_vtbl);
51         *object = &This->device_parent_vtbl;
52         return S_OK;
53     }
54
55     WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
56
57     *object = NULL;
58     return E_NOINTERFACE;
59 }
60
61 static ULONG STDMETHODCALLTYPE d3d10_device_inner_AddRef(IUnknown *iface)
62 {
63     struct d3d10_device *This = d3d10_device_from_inner_unknown(iface);
64     ULONG refcount = InterlockedIncrement(&This->refcount);
65
66     TRACE("%p increasing refcount to %u\n", This, refcount);
67
68     return refcount;
69 }
70
71 static ULONG STDMETHODCALLTYPE d3d10_device_inner_Release(IUnknown *iface)
72 {
73     struct d3d10_device *This = d3d10_device_from_inner_unknown(iface);
74     ULONG refcount = InterlockedDecrement(&This->refcount);
75
76     TRACE("%p decreasing refcount to %u\n", This, refcount);
77
78     if (!refcount)
79     {
80         if (This->wined3d_device) IWineD3DDevice_Release(This->wined3d_device);
81     }
82
83     return refcount;
84 }
85
86 /* IUnknown methods */
87
88 static HRESULT STDMETHODCALLTYPE d3d10_device_QueryInterface(ID3D10Device *iface, REFIID riid, void **object)
89 {
90     struct d3d10_device *This = (struct d3d10_device *)iface;
91     TRACE("Forwarding to outer IUnknown\n");
92     return IUnknown_QueryInterface(This->outer_unknown, riid, object);
93 }
94
95 static ULONG STDMETHODCALLTYPE d3d10_device_AddRef(ID3D10Device *iface)
96 {
97     struct d3d10_device *This = (struct d3d10_device *)iface;
98     TRACE("Forwarding to outer IUnknown\n");
99     return IUnknown_AddRef(This->outer_unknown);
100 }
101
102 static ULONG STDMETHODCALLTYPE d3d10_device_Release(ID3D10Device *iface)
103 {
104     struct d3d10_device *This = (struct d3d10_device *)iface;
105     TRACE("Forwarding to outer IUnknown\n");
106     return IUnknown_Release(This->outer_unknown);
107 }
108
109 /* ID3D10Device methods */
110
111 static void STDMETHODCALLTYPE d3d10_device_VSSetConstantBuffers(ID3D10Device *iface,
112         UINT start_slot, UINT buffer_count, ID3D10Buffer *const *buffers)
113 {
114     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p stub!\n",
115             iface, start_slot, buffer_count, buffers);
116 }
117
118 static void STDMETHODCALLTYPE d3d10_device_PSSetShaderResources(ID3D10Device *iface,
119         UINT start_slot, UINT view_count, ID3D10ShaderResourceView *const *views)
120 {
121     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
122             iface, start_slot, view_count, views);
123 }
124
125 static void STDMETHODCALLTYPE d3d10_device_PSSetShader(ID3D10Device *iface, ID3D10PixelShader *shader)
126 {
127     struct d3d10_device *This = (struct d3d10_device *)iface;
128     struct d3d10_pixel_shader *ps = (struct d3d10_pixel_shader *)shader;
129
130     TRACE("iface %p, shader %p\n", iface, shader);
131
132     IWineD3DDevice_SetPixelShader(This->wined3d_device, ps ? ps->wined3d_shader : NULL);
133 }
134
135 static void STDMETHODCALLTYPE d3d10_device_PSSetSamplers(ID3D10Device *iface,
136         UINT start_slot, UINT sampler_count, ID3D10SamplerState *const *samplers)
137 {
138     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
139             iface, start_slot, sampler_count, samplers);
140 }
141
142 static void STDMETHODCALLTYPE d3d10_device_VSSetShader(ID3D10Device *iface, ID3D10VertexShader *shader)
143 {
144     struct d3d10_device *This = (struct d3d10_device *)iface;
145     struct d3d10_vertex_shader *vs = (struct d3d10_vertex_shader *)shader;
146
147     TRACE("iface %p, shader %p\n", iface, shader);
148
149     IWineD3DDevice_SetVertexShader(This->wined3d_device, vs ? vs->wined3d_shader : NULL);
150 }
151
152 static void STDMETHODCALLTYPE d3d10_device_DrawIndexed(ID3D10Device *iface,
153         UINT index_count, UINT start_index_location, INT base_vertex_location)
154 {
155     struct d3d10_device *This = (struct d3d10_device *)iface;
156
157     TRACE("iface %p, index_count %u, start_index_location %u, base_vertex_location %d.\n",
158             iface, index_count, start_index_location, base_vertex_location);
159
160     IWineD3DDevice_SetBaseVertexIndex(This->wined3d_device, base_vertex_location);
161     IWineD3DDevice_DrawIndexedPrimitive(This->wined3d_device, start_index_location, index_count);
162 }
163
164 static void STDMETHODCALLTYPE d3d10_device_Draw(ID3D10Device *iface,
165         UINT vertex_count, UINT start_vertex_location)
166 {
167     struct d3d10_device *This = (struct d3d10_device *)iface;
168
169     TRACE("iface %p, vertex_count %u, start_vertex_location %u\n",
170             iface, vertex_count, start_vertex_location);
171
172     IWineD3DDevice_DrawPrimitive(This->wined3d_device, start_vertex_location, vertex_count);
173 }
174
175 static void STDMETHODCALLTYPE d3d10_device_PSSetConstantBuffers(ID3D10Device *iface,
176         UINT start_slot, UINT buffer_count, ID3D10Buffer *const *buffers)
177 {
178     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p stub!\n",
179             iface, start_slot, buffer_count, buffers);
180 }
181
182 static void STDMETHODCALLTYPE d3d10_device_IASetInputLayout(ID3D10Device *iface, ID3D10InputLayout *input_layout)
183 {
184     struct d3d10_device *This = (struct d3d10_device *)iface;
185
186     TRACE("iface %p, input_layout %p\n", iface, input_layout);
187
188     IWineD3DDevice_SetVertexDeclaration(This->wined3d_device,
189             input_layout ? ((struct d3d10_input_layout *)input_layout)->wined3d_decl : NULL);
190 }
191
192 static void STDMETHODCALLTYPE d3d10_device_IASetVertexBuffers(ID3D10Device *iface,
193         UINT start_slot, UINT buffer_count, ID3D10Buffer *const *buffers,
194         const UINT *strides, const UINT *offsets)
195 {
196     struct d3d10_device *This = (struct d3d10_device *)iface;
197     unsigned int i;
198
199     TRACE("iface %p, start_slot %u, buffer_count %u, buffers %p, strides %p, offsets %p\n",
200             iface, start_slot, buffer_count, buffers, strides, offsets);
201
202     for (i = 0; i < buffer_count; ++i)
203     {
204         IWineD3DDevice_SetStreamSource(This->wined3d_device, start_slot,
205                 buffers[i] ? ((struct d3d10_buffer *)buffers[i])->wined3d_buffer : NULL,
206                 offsets[i], strides[i]);
207     }
208 }
209
210 static void STDMETHODCALLTYPE d3d10_device_IASetIndexBuffer(ID3D10Device *iface,
211         ID3D10Buffer *buffer, DXGI_FORMAT format, UINT offset)
212 {
213     struct d3d10_device *This = (struct d3d10_device *)iface;
214
215     TRACE("iface %p, buffer %p, format %s, offset %u.\n",
216             iface, buffer, debug_dxgi_format(format), offset);
217
218     IWineD3DDevice_SetIndexBuffer(This->wined3d_device, buffer ? ((struct d3d10_buffer *)buffer)->wined3d_buffer : NULL,
219             wined3dformat_from_dxgi_format(format));
220     if (offset) FIXME("offset %u not supported.\n", offset);
221 }
222
223 static void STDMETHODCALLTYPE d3d10_device_DrawIndexedInstanced(ID3D10Device *iface,
224         UINT instance_index_count, UINT instance_count, UINT start_index_location,
225         INT base_vertex_location, UINT start_instance_location)
226 {
227     FIXME("iface %p, instance_index_count %u, instance_count %u, start_index_location %u,\n"
228             "\tbase_vertex_location %d, start_instance_location %u stub!\n",
229             iface, instance_index_count, instance_count, start_index_location,
230             base_vertex_location, start_instance_location);
231 }
232
233 static void STDMETHODCALLTYPE d3d10_device_DrawInstanced(ID3D10Device *iface,
234         UINT instance_vertex_count, UINT instance_count,
235         UINT start_vertex_location, UINT start_instance_location)
236 {
237     FIXME("iface %p, instance_vertex_count %u, instance_count %u, start_vertex_location %u,\n"
238             "\tstart_instance_location %u stub!\n", iface, instance_vertex_count, instance_count,
239             start_vertex_location, start_instance_location);
240 }
241
242 static void STDMETHODCALLTYPE d3d10_device_GSSetConstantBuffers(ID3D10Device *iface,
243         UINT start_slot, UINT buffer_count, ID3D10Buffer *const *buffers)
244 {
245     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p stub!\n",
246             iface, start_slot, buffer_count, buffers);
247 }
248
249 static void STDMETHODCALLTYPE d3d10_device_GSSetShader(ID3D10Device *iface, ID3D10GeometryShader *shader)
250 {
251     if (shader) FIXME("iface %p, shader %p stub!\n", iface, shader);
252     else WARN("iface %p, shader %p stub!\n", iface, shader);
253 }
254
255 static void STDMETHODCALLTYPE d3d10_device_IASetPrimitiveTopology(ID3D10Device *iface, D3D10_PRIMITIVE_TOPOLOGY topology)
256 {
257     struct d3d10_device *This = (struct d3d10_device *)iface;
258
259     TRACE("iface %p, topology %s\n", iface, debug_d3d10_primitive_topology(topology));
260
261     IWineD3DDevice_SetPrimitiveType(This->wined3d_device, (WINED3DPRIMITIVETYPE)topology);
262 }
263
264 static void STDMETHODCALLTYPE d3d10_device_VSSetShaderResources(ID3D10Device *iface,
265         UINT start_slot, UINT view_count, ID3D10ShaderResourceView *const *views)
266 {
267     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
268             iface, start_slot, view_count, views);
269 }
270
271 static void STDMETHODCALLTYPE d3d10_device_VSSetSamplers(ID3D10Device *iface,
272         UINT start_slot, UINT sampler_count, ID3D10SamplerState *const *samplers)
273 {
274     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
275             iface, start_slot, sampler_count, samplers);
276 }
277
278 static void STDMETHODCALLTYPE d3d10_device_SetPredication(ID3D10Device *iface, ID3D10Predicate *predicate, BOOL value)
279 {
280     FIXME("iface %p, predicate %p, value %d stub!\n", iface, predicate, value);
281 }
282
283 static void STDMETHODCALLTYPE d3d10_device_GSSetShaderResources(ID3D10Device *iface,
284         UINT start_slot, UINT view_count, ID3D10ShaderResourceView *const *views)
285 {
286     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
287             iface, start_slot, view_count, views);
288 }
289
290 static void STDMETHODCALLTYPE d3d10_device_GSSetSamplers(ID3D10Device *iface,
291         UINT start_slot, UINT sampler_count, ID3D10SamplerState *const *samplers)
292 {
293     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
294             iface, start_slot, sampler_count, samplers);
295 }
296
297 static void STDMETHODCALLTYPE d3d10_device_OMSetRenderTargets(ID3D10Device *iface,
298         UINT render_target_view_count, ID3D10RenderTargetView *const *render_target_views,
299         ID3D10DepthStencilView *depth_stencil_view)
300 {
301     FIXME("iface %p, render_target_view_count %u, render_target_views %p, depth_stencil_view %p\n",
302             iface, render_target_view_count, render_target_views, depth_stencil_view);
303 }
304
305 static void STDMETHODCALLTYPE d3d10_device_OMSetBlendState(ID3D10Device *iface,
306         ID3D10BlendState *blend_state, const FLOAT blend_factor[4], UINT sample_mask)
307 {
308     FIXME("iface %p, blend_state %p, blend_factor [%f %f %f %f], sample_mask 0x%08x stub!\n",
309             iface, blend_state, blend_factor[0], blend_factor[1], blend_factor[2], blend_factor[3], sample_mask);
310 }
311
312 static void STDMETHODCALLTYPE d3d10_device_OMSetDepthStencilState(ID3D10Device *iface,
313         ID3D10DepthStencilState *depth_stencil_state, UINT stencil_ref)
314 {
315     FIXME("iface %p, depth_stencil_state %p, stencil_ref %u stub!\n",
316             iface, depth_stencil_state, stencil_ref);
317 }
318
319 static void STDMETHODCALLTYPE d3d10_device_SOSetTargets(ID3D10Device *iface,
320         UINT target_count, ID3D10Buffer *const *targets, const UINT *offsets)
321 {
322     FIXME("iface %p, target_count %u, targets %p, offsets %p stub!\n", iface, target_count, targets, offsets);
323 }
324
325 static void STDMETHODCALLTYPE d3d10_device_DrawAuto(ID3D10Device *iface)
326 {
327     FIXME("iface %p stub!\n", iface);
328 }
329
330 static void STDMETHODCALLTYPE d3d10_device_RSSetState(ID3D10Device *iface, ID3D10RasterizerState *rasterizer_state)
331 {
332     FIXME("iface %p, rasterizer_state %p stub!\n", iface, rasterizer_state);
333 }
334
335 static void STDMETHODCALLTYPE d3d10_device_RSSetViewports(ID3D10Device *iface,
336         UINT viewport_count, const D3D10_VIEWPORT *viewports)
337 {
338     FIXME("iface %p, viewport_count %u, viewports %p stub!\n", iface, viewport_count, viewports);
339 }
340
341 static void STDMETHODCALLTYPE d3d10_device_RSSetScissorRects(ID3D10Device *iface,
342         UINT rect_count, const D3D10_RECT *rects)
343 {
344     FIXME("iface %p, rect_count %u, rects %p\n", iface, rect_count, rects);
345 }
346
347 static void STDMETHODCALLTYPE d3d10_device_CopySubresourceRegion(ID3D10Device *iface,
348         ID3D10Resource *dst_resource, UINT dst_subresource_idx, UINT dst_x, UINT dst_y, UINT dst_z,
349         ID3D10Resource *src_resource, UINT src_subresource_idx, const D3D10_BOX *src_box)
350 {
351     FIXME("iface %p, dst_resource %p, dst_subresource_idx %u, dst_x %u, dst_y %u, dst_z %u,\n"
352             "\tsrc_resource %p, src_subresource_idx %u, src_box %p stub!\n",
353             iface, dst_resource, dst_subresource_idx, dst_x, dst_y, dst_z,
354             src_resource, src_subresource_idx, src_box);
355 }
356
357 static void STDMETHODCALLTYPE d3d10_device_CopyResource(ID3D10Device *iface,
358         ID3D10Resource *dst_resource, ID3D10Resource *src_resource)
359 {
360     FIXME("iface %p, dst_resource %p, src_resource %p stub!\n", iface, dst_resource, src_resource);
361 }
362
363 static void STDMETHODCALLTYPE d3d10_device_UpdateSubresource(ID3D10Device *iface,
364         ID3D10Resource *resource, UINT subresource_idx, const D3D10_BOX *box,
365         const void *data, UINT row_pitch, UINT depth_pitch)
366 {
367     FIXME("iface %p, resource %p, subresource_idx %u, box %p, data %p, row_pitch %u, depth_pitch %u stub!\n",
368             iface, resource, subresource_idx, box, data, row_pitch, depth_pitch);
369 }
370
371 static void STDMETHODCALLTYPE d3d10_device_ClearRenderTargetView(ID3D10Device *iface,
372         ID3D10RenderTargetView *render_target_view, const FLOAT color_rgba[4])
373 {
374     struct d3d10_device *This = (struct d3d10_device *)iface;
375     IWineD3DRendertargetView *wined3d_view = ((struct d3d10_rendertarget_view *)render_target_view)->wined3d_view;
376
377     TRACE("iface %p, render_target_view %p, color_rgba [%f %f %f %f]\n",
378             iface, render_target_view, color_rgba[0], color_rgba[1], color_rgba[2], color_rgba[3]);
379
380     IWineD3DDevice_ClearRendertargetView(This->wined3d_device, wined3d_view, color_rgba);
381 }
382
383 static void STDMETHODCALLTYPE d3d10_device_ClearDepthStencilView(ID3D10Device *iface,
384         ID3D10DepthStencilView *depth_stencil_view, UINT flags, FLOAT depth, UINT8 stencil)
385 {
386     FIXME("iface %p, depth_stencil_view %p, flags %#x, depth %f, stencil %u stub!\n",
387             iface, depth_stencil_view, flags, depth, stencil);
388 }
389
390 static void STDMETHODCALLTYPE d3d10_device_GenerateMips(ID3D10Device *iface, ID3D10ShaderResourceView *shader_resource_view)
391 {
392     FIXME("iface %p, shader_resource_view %p stub!\n", iface, shader_resource_view);
393 }
394
395 static void STDMETHODCALLTYPE d3d10_device_ResolveSubresource(ID3D10Device *iface,
396         ID3D10Resource *dst_resource, UINT dst_subresource_idx,
397         ID3D10Resource *src_resource, UINT src_subresource_idx, DXGI_FORMAT format)
398 {
399     FIXME("iface %p, dst_resource %p, dst_subresource_idx %u,\n"
400             "\tsrc_resource %p, src_subresource_idx %u, format %s stub!\n",
401             iface, dst_resource, dst_subresource_idx,
402             src_resource, src_subresource_idx, debug_dxgi_format(format));
403 }
404
405 static void STDMETHODCALLTYPE d3d10_device_VSGetConstantBuffers(ID3D10Device *iface,
406         UINT start_slot, UINT buffer_count, ID3D10Buffer **buffers)
407 {
408     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p stub!\n",
409             iface, start_slot, buffer_count, buffers);
410 }
411
412 static void STDMETHODCALLTYPE d3d10_device_PSGetShaderResources(ID3D10Device *iface,
413         UINT start_slot, UINT view_count, ID3D10ShaderResourceView **views)
414 {
415     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
416             iface, start_slot, view_count, views);
417 }
418
419 static void STDMETHODCALLTYPE d3d10_device_PSGetShader(ID3D10Device *iface, ID3D10PixelShader **shader)
420 {
421     FIXME("iface %p, shader %p stub!\n", iface, shader);
422 }
423
424 static void STDMETHODCALLTYPE d3d10_device_PSGetSamplers(ID3D10Device *iface,
425         UINT start_slot, UINT sampler_count, ID3D10SamplerState **samplers)
426 {
427     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
428             iface, start_slot, sampler_count, samplers);
429 }
430
431 static void STDMETHODCALLTYPE d3d10_device_VSGetShader(ID3D10Device *iface, ID3D10VertexShader **shader)
432 {
433     FIXME("iface %p, shader %p stub!\n", iface, shader);
434 }
435
436 static void STDMETHODCALLTYPE d3d10_device_PSGetConstantBuffers(ID3D10Device *iface,
437         UINT start_slot, UINT buffer_count, ID3D10Buffer **buffers)
438 {
439     FIXME("iface %p, start_slot %u, buffer_count %u, buffer %p stub!\n",
440             iface, start_slot, buffer_count, buffers);
441 }
442
443 static void STDMETHODCALLTYPE d3d10_device_IAGetInputLayout(ID3D10Device *iface, ID3D10InputLayout **input_layout)
444 {
445     FIXME("iface %p, input_layout %p stub!\n", iface, input_layout);
446 }
447
448 static void STDMETHODCALLTYPE d3d10_device_IAGetVertexBuffers(ID3D10Device *iface,
449         UINT start_slot, UINT buffer_count, ID3D10Buffer **buffers, UINT *strides, UINT *offsets)
450 {
451     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p, strides %p, offsets %p stub!\n",
452             iface, start_slot, buffer_count, buffers, strides, offsets);
453 }
454
455 static void STDMETHODCALLTYPE d3d10_device_IAGetIndexBuffer(ID3D10Device *iface,
456         ID3D10Buffer **buffer, DXGI_FORMAT *format, UINT *offset)
457 {
458     FIXME("iface %p, buffer %p, format %p, offset %p stub!\n", iface, buffer, format, offset);
459 }
460
461 static void STDMETHODCALLTYPE d3d10_device_GSGetConstantBuffers(ID3D10Device *iface,
462         UINT start_slot, UINT buffer_count, ID3D10Buffer **buffers)
463 {
464     FIXME("iface %p, start_slot %u, buffer_count %u, buffers %p stub!\n",
465             iface, start_slot, buffer_count, buffers);
466 }
467
468 static void STDMETHODCALLTYPE d3d10_device_GSGetShader(ID3D10Device *iface, ID3D10GeometryShader **shader)
469 {
470     FIXME("iface %p, shader %p stub!\n", iface, shader);
471 }
472
473 static void STDMETHODCALLTYPE d3d10_device_IAGetPrimitiveTopology(ID3D10Device *iface, D3D10_PRIMITIVE_TOPOLOGY *topology)
474 {
475     struct d3d10_device *This = (struct d3d10_device *)iface;
476
477     TRACE("iface %p, topology %p\n", iface, topology);
478
479     IWineD3DDevice_GetPrimitiveType(This->wined3d_device, (WINED3DPRIMITIVETYPE *)topology);
480 }
481
482 static void STDMETHODCALLTYPE d3d10_device_VSGetShaderResources(ID3D10Device *iface,
483         UINT start_slot, UINT view_count, ID3D10ShaderResourceView **views)
484 {
485     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
486             iface, start_slot, view_count, views);
487 }
488
489 static void STDMETHODCALLTYPE d3d10_device_VSGetSamplers(ID3D10Device *iface,
490         UINT start_slot, UINT sampler_count, ID3D10SamplerState **samplers)
491 {
492     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
493             iface, start_slot, sampler_count, samplers);
494 }
495
496 static void STDMETHODCALLTYPE d3d10_device_GetPredication(ID3D10Device *iface,
497         ID3D10Predicate **predicate, BOOL *value)
498 {
499     FIXME("iface %p, predicate %p, value %p stub!\n", iface, predicate, value);
500 }
501
502 static void STDMETHODCALLTYPE d3d10_device_GSGetShaderResources(ID3D10Device *iface,
503         UINT start_slot, UINT view_count, ID3D10ShaderResourceView **views)
504 {
505     FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n",
506             iface, start_slot, view_count, views);
507 }
508
509 static void STDMETHODCALLTYPE d3d10_device_GSGetSamplers(ID3D10Device *iface,
510         UINT start_slot, UINT sampler_count, ID3D10SamplerState **samplers)
511 {
512     FIXME("iface %p, start_slot %u, sampler_count %u, samplers %p stub!\n",
513             iface, start_slot, sampler_count, samplers);
514 }
515
516 static void STDMETHODCALLTYPE d3d10_device_OMGetRenderTargets(ID3D10Device *iface,
517         UINT view_count, ID3D10RenderTargetView **render_target_views, ID3D10DepthStencilView **depth_stencil_view)
518 {
519     FIXME("iface %p, view_count %u, render_target_views %p, depth_stencil_view %p stub!\n",
520             iface, view_count, render_target_views, depth_stencil_view);
521 }
522
523 static void STDMETHODCALLTYPE d3d10_device_OMGetBlendState(ID3D10Device *iface,
524         ID3D10BlendState **blend_state, FLOAT blend_factor[4], UINT *sample_mask)
525 {
526     FIXME("iface %p, blend_state %p, blend_factor %p, sample_mask %p stub!\n",
527             iface, blend_state, blend_factor, sample_mask);
528 }
529
530 static void STDMETHODCALLTYPE d3d10_device_OMGetDepthStencilState(ID3D10Device *iface,
531         ID3D10DepthStencilState **depth_stencil_state, UINT *stencil_ref)
532 {
533     FIXME("iface %p, depth_stencil_state %p, stencil_ref %p stub!\n",
534             iface, depth_stencil_state, stencil_ref);
535 }
536
537 static void STDMETHODCALLTYPE d3d10_device_SOGetTargets(ID3D10Device *iface,
538         UINT buffer_count, ID3D10Buffer **buffers, UINT *offsets)
539 {
540     FIXME("iface %p, buffer_count %u, buffers %p, offsets %p stub!\n",
541             iface, buffer_count, buffers, offsets);
542 }
543
544 static void STDMETHODCALLTYPE d3d10_device_RSGetState(ID3D10Device *iface, ID3D10RasterizerState **rasterizer_state)
545 {
546     FIXME("iface %p, rasterizer_state %p stub!\n", iface, rasterizer_state);
547 }
548
549 static void STDMETHODCALLTYPE d3d10_device_RSGetViewports(ID3D10Device *iface,
550         UINT *viewport_count, D3D10_VIEWPORT *viewports)
551 {
552     FIXME("iface %p, viewport_count %p, viewports %p stub!\n", iface, viewport_count, viewports);
553 }
554
555 static void STDMETHODCALLTYPE d3d10_device_RSGetScissorRects(ID3D10Device *iface, UINT *rect_count, D3D10_RECT *rects)
556 {
557     FIXME("iface %p, rect_count %p, rects %p stub!\n", iface, rect_count, rects);
558 }
559
560 static HRESULT STDMETHODCALLTYPE d3d10_device_GetDeviceRemovedReason(ID3D10Device *iface)
561 {
562     FIXME("iface %p stub!\n", iface);
563
564     return E_NOTIMPL;
565 }
566
567 static HRESULT STDMETHODCALLTYPE d3d10_device_SetExceptionMode(ID3D10Device *iface, UINT flags)
568 {
569     FIXME("iface %p, flags %#x stub!\n", iface, flags);
570
571     return E_NOTIMPL;
572 }
573
574 static UINT STDMETHODCALLTYPE d3d10_device_GetExceptionMode(ID3D10Device *iface)
575 {
576     FIXME("iface %p stub!\n", iface);
577
578     return 0;
579 }
580
581 static HRESULT STDMETHODCALLTYPE d3d10_device_GetPrivateData(ID3D10Device *iface,
582         REFGUID guid, UINT *data_size, void *data)
583 {
584     FIXME("iface %p, guid %s, data_size %p, data %p stub!\n",
585             iface, debugstr_guid(guid), data_size, data);
586
587     return E_NOTIMPL;
588 }
589
590 static HRESULT STDMETHODCALLTYPE d3d10_device_SetPrivateData(ID3D10Device *iface,
591         REFGUID guid, UINT data_size, const void *data)
592 {
593     FIXME("iface %p, guid %s, data_size %u, data %p stub!\n",
594             iface, debugstr_guid(guid), data_size, data);
595
596     return E_NOTIMPL;
597 }
598
599 static HRESULT STDMETHODCALLTYPE d3d10_device_SetPrivateDataInterface(ID3D10Device *iface,
600         REFGUID guid, const IUnknown *data)
601 {
602     FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
603
604     return E_NOTIMPL;
605 }
606
607 static void STDMETHODCALLTYPE d3d10_device_ClearState(ID3D10Device *iface)
608 {
609     FIXME("iface %p stub!\n", iface);
610 }
611
612 static void STDMETHODCALLTYPE d3d10_device_Flush(ID3D10Device *iface)
613 {
614     FIXME("iface %p stub!\n", iface);
615 }
616
617 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateBuffer(ID3D10Device *iface,
618         const D3D10_BUFFER_DESC *desc, const D3D10_SUBRESOURCE_DATA *data, ID3D10Buffer **buffer)
619 {
620     struct d3d10_device *This = (struct d3d10_device *)iface;
621     struct d3d10_buffer *object;
622     HRESULT hr;
623
624     FIXME("iface %p, desc %p, data %p, buffer %p partial stub!\n", iface, desc, data, buffer);
625
626     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
627     if (!object)
628     {
629         ERR("Failed to allocate D3D10 buffer object memory\n");
630         return E_OUTOFMEMORY;
631     }
632
633     hr = d3d10_buffer_init(object, This, desc, data);
634     if (FAILED(hr))
635     {
636         WARN("Failed to initialize buffer, hr %#x.\n", hr);
637         HeapFree(GetProcessHeap(), 0, object);
638         return hr;
639     }
640
641     *buffer = (ID3D10Buffer *)object;
642
643     TRACE("Created ID3D10Buffer %p\n", object);
644
645     return S_OK;
646 }
647
648 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateTexture1D(ID3D10Device *iface,
649         const D3D10_TEXTURE1D_DESC *desc, const D3D10_SUBRESOURCE_DATA *data, ID3D10Texture1D **texture)
650 {
651     FIXME("iface %p, desc %p, data %p, texture %p stub!\n", iface, desc, data, texture);
652
653     return E_NOTIMPL;
654 }
655
656 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateTexture2D(ID3D10Device *iface,
657         const D3D10_TEXTURE2D_DESC *desc, const D3D10_SUBRESOURCE_DATA *data, ID3D10Texture2D **texture)
658 {
659     struct d3d10_device *This = (struct d3d10_device *)iface;
660     struct d3d10_texture2d *object;
661     HRESULT hr;
662
663     FIXME("iface %p, desc %p, data %p, texture %p partial stub!\n", iface, desc, data, texture);
664
665     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
666     if (!object)
667     {
668         ERR("Failed to allocate D3D10 texture2d object memory\n");
669         return E_OUTOFMEMORY;
670     }
671
672     hr = d3d10_texture2d_init(object, This, desc);
673     if (FAILED(hr))
674     {
675         WARN("Failed to initialize texture, hr %#x.\n", hr);
676         HeapFree(GetProcessHeap(), 0, object);
677         return hr;
678     }
679
680     *texture = (ID3D10Texture2D *)object;
681
682     TRACE("Created ID3D10Texture2D %p\n", object);
683
684     return S_OK;
685 }
686
687 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateTexture3D(ID3D10Device *iface,
688         const D3D10_TEXTURE3D_DESC *desc, const D3D10_SUBRESOURCE_DATA *data, ID3D10Texture3D **texture)
689 {
690     FIXME("iface %p, desc %p, data %p, texture %p stub!\n", iface, desc, data, texture);
691
692     return E_NOTIMPL;
693 }
694
695 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateShaderResourceView(ID3D10Device *iface,
696         ID3D10Resource *resource, const D3D10_SHADER_RESOURCE_VIEW_DESC *desc, ID3D10ShaderResourceView **view)
697 {
698     struct d3d10_shader_resource_view *object;
699     HRESULT hr;
700
701     TRACE("iface %p, resource %p, desc %p, view %p.\n", iface, resource, desc, view);
702
703     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
704     if (!object)
705     {
706         ERR("Failed to allocate D3D10 shader resource view object memory.\n");
707         return E_OUTOFMEMORY;
708     }
709
710     hr = d3d10_shader_resource_view_init(object);
711     if (FAILED(hr))
712     {
713         WARN("Failed to initialize shader resource view, hr %#x.\n", hr);
714         HeapFree(GetProcessHeap(), 0, object);
715         return hr;
716     }
717
718     TRACE("Created shader resource view %p.\n", object);
719     *view = (ID3D10ShaderResourceView *)object;
720
721     return S_OK;
722 }
723
724 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateRenderTargetView(ID3D10Device *iface,
725         ID3D10Resource *resource, const D3D10_RENDER_TARGET_VIEW_DESC *desc, ID3D10RenderTargetView **view)
726 {
727     struct d3d10_rendertarget_view *object;
728     HRESULT hr;
729
730     TRACE("iface %p, resource %p, desc %p, view %p stub!\n", iface, resource, desc, view);
731
732     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
733     if (!object)
734     {
735         ERR("Failed to allocate D3D10 rendertarget view object memory\n");
736         return E_OUTOFMEMORY;
737     }
738
739     hr = d3d10_rendertarget_view_init(object, (struct d3d10_device *)iface, resource, desc);
740     if (FAILED(hr))
741     {
742         WARN("Failed to initialize rendertarget view, hr %#x.\n", hr);
743         HeapFree(GetProcessHeap(), 0, object);
744         return hr;
745     }
746
747     TRACE("Created rendertarget view %p.\n", object);
748     *view = (ID3D10RenderTargetView *)object;
749
750     return S_OK;
751 }
752
753 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateDepthStencilView(ID3D10Device *iface,
754         ID3D10Resource *resource, const D3D10_DEPTH_STENCIL_VIEW_DESC *desc, ID3D10DepthStencilView **view)
755 {
756     struct d3d10_depthstencil_view *object;
757     HRESULT hr;
758
759     TRACE("iface %p, resource %p, desc %p, view %p.\n", iface, resource, desc, view);
760
761     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
762     if (!object)
763     {
764         ERR("Failed to allocate D3D10 depthstencil view object memory.\n");
765         return E_OUTOFMEMORY;
766     }
767
768     hr = d3d10_depthstencil_view_init(object);
769     if (FAILED(hr))
770     {
771         WARN("Failed to initialize depthstencil view, hr %#x.\n", hr);
772         HeapFree(GetProcessHeap(), 0, object);
773         return hr;
774     }
775
776     TRACE("Created depthstencil view %p.\n", object);
777     *view = (ID3D10DepthStencilView *)object;
778
779     return S_OK;
780 }
781
782 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateInputLayout(ID3D10Device *iface,
783         const D3D10_INPUT_ELEMENT_DESC *element_descs, UINT element_count, const void *shader_byte_code,
784         SIZE_T shader_byte_code_length, ID3D10InputLayout **input_layout)
785 {
786     struct d3d10_device *This = (struct d3d10_device *)iface;
787     struct d3d10_input_layout *object;
788     HRESULT hr;
789
790     TRACE("iface %p, element_descs %p, element_count %u, shader_byte_code %p,"
791             "\tshader_byte_code_length %lu, input_layout %p\n",
792             iface, element_descs, element_count, shader_byte_code,
793             shader_byte_code_length, input_layout);
794
795     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
796     if (!object)
797     {
798         ERR("Failed to allocate D3D10 input layout object memory\n");
799         return E_OUTOFMEMORY;
800     }
801
802     hr = d3d10_input_layout_init(object, This, element_descs, element_count,
803             shader_byte_code, shader_byte_code_length);
804     if (FAILED(hr))
805     {
806         WARN("Failed to initialize input layout, hr %#x.\n", hr);
807         HeapFree(GetProcessHeap(), 0, object);
808         return hr;
809     }
810
811     TRACE("Created input layout %p.\n", object);
812     *input_layout = (ID3D10InputLayout *)object;
813
814     return S_OK;
815 }
816
817 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateVertexShader(ID3D10Device *iface,
818         const void *byte_code, SIZE_T byte_code_length, ID3D10VertexShader **shader)
819 {
820     struct d3d10_device *This = (struct d3d10_device *)iface;
821     struct d3d10_vertex_shader *object;
822     HRESULT hr;
823
824     TRACE("iface %p, byte_code %p, byte_code_length %lu, shader %p\n",
825             iface, byte_code, byte_code_length, shader);
826
827     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
828     if (!object)
829     {
830         ERR("Failed to allocate D3D10 vertex shader object memory\n");
831         return E_OUTOFMEMORY;
832     }
833
834     hr = d3d10_vertex_shader_init(object, This, byte_code, byte_code_length);
835     if (FAILED(hr))
836     {
837         WARN("Failed to initialize vertex shader, hr %#x.\n", hr);
838         HeapFree(GetProcessHeap(), 0, object);
839         return hr;
840     }
841
842     TRACE("Created vertex shader %p.\n", object);
843     *shader = (ID3D10VertexShader *)object;
844
845     return S_OK;
846 }
847
848 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateGeometryShader(ID3D10Device *iface,
849         const void *byte_code, SIZE_T byte_code_length, ID3D10GeometryShader **shader)
850 {
851     struct d3d10_geometry_shader *object;
852     HRESULT hr;
853
854     FIXME("iface %p, byte_code %p, byte_code_length %lu, shader %p stub!\n",
855             iface, byte_code, byte_code_length, shader);
856
857     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
858     if (!object)
859     {
860         ERR("Failed to allocate D3D10 geometry shader object memory\n");
861         return E_OUTOFMEMORY;
862     }
863
864     hr = d3d10_geometry_shader_init(object);
865     if (FAILED(hr))
866     {
867         WARN("Failed to initialize geometry shader, hr %#x.\n", hr);
868         HeapFree(GetProcessHeap(), 0, object);
869     }
870
871     TRACE("Created geometry shader %p.\n", object);
872     *shader = (ID3D10GeometryShader *)object;
873
874     return S_OK;
875 }
876
877 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateGeometryShaderWithStreamOutput(ID3D10Device *iface,
878         const void *byte_code, SIZE_T byte_code_length, const D3D10_SO_DECLARATION_ENTRY *output_stream_decls,
879         UINT output_stream_decl_count, UINT output_stream_stride, ID3D10GeometryShader **shader)
880 {
881     FIXME("iface %p, byte_code %p, byte_code_length %lu, output_stream_decls %p,\n"
882             "\toutput_stream_decl_count %u, output_stream_stride %u, shader %p stub!\n",
883             iface, byte_code, byte_code_length, output_stream_decls,
884             output_stream_decl_count, output_stream_stride, shader);
885
886     return E_NOTIMPL;
887 }
888
889 static HRESULT STDMETHODCALLTYPE d3d10_device_CreatePixelShader(ID3D10Device *iface,
890         const void *byte_code, SIZE_T byte_code_length, ID3D10PixelShader **shader)
891 {
892     struct d3d10_device *This = (struct d3d10_device *)iface;
893     struct d3d10_pixel_shader *object;
894     HRESULT hr;
895
896     TRACE("iface %p, byte_code %p, byte_code_length %lu, shader %p\n",
897             iface, byte_code, byte_code_length, shader);
898
899     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
900     if (!object)
901     {
902         ERR("Failed to allocate D3D10 pixel shader object memory\n");
903         return E_OUTOFMEMORY;
904     }
905
906     hr = d3d10_pixel_shader_init(object, This, byte_code, byte_code_length);
907     if (FAILED(hr))
908     {
909         WARN("Failed to initialize pixel shader, hr %#x.\n", hr);
910         HeapFree(GetProcessHeap(), 0, object);
911         return hr;
912     }
913
914     TRACE("Created pixel shader %p.\n", object);
915     *shader = (ID3D10PixelShader *)object;
916
917     return S_OK;
918 }
919
920 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateBlendState(ID3D10Device *iface,
921         const D3D10_BLEND_DESC *desc, ID3D10BlendState **blend_state)
922 {
923     struct d3d10_blend_state *object;
924     HRESULT hr;
925
926     TRACE("iface %p, desc %p, blend_state %p.\n", iface, desc, blend_state);
927
928     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
929     if (!object)
930     {
931         ERR("Failed to allocate D3D10 blend state object memory.\n");
932         return E_OUTOFMEMORY;
933     }
934
935     hr = d3d10_blend_state_init(object);
936     if (FAILED(hr))
937     {
938         WARN("Failed to initialize blend state, hr %#x.\n", hr);
939         HeapFree(GetProcessHeap(), 0, object);
940         return hr;
941     }
942
943     TRACE("Created blend state %p.\n", object);
944     *blend_state = (ID3D10BlendState *)object;
945
946     return S_OK;
947 }
948
949 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateDepthStencilState(ID3D10Device *iface,
950         const D3D10_DEPTH_STENCIL_DESC *desc, ID3D10DepthStencilState **depth_stencil_state)
951 {
952     struct d3d10_depthstencil_state *object;
953     HRESULT hr;
954
955     TRACE("iface %p, desc %p, depth_stencil_state %p.\n", iface, desc, depth_stencil_state);
956
957     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
958     if (!object)
959     {
960         ERR("Failed to allocate D3D10 depthstencil state object memory.\n");
961         return E_OUTOFMEMORY;
962     }
963
964     hr = d3d10_depthstencil_state_init(object);
965     if (FAILED(hr))
966     {
967         WARN("Failed to initialize depthstencil state, hr %#x.\n", hr);
968         HeapFree(GetProcessHeap(), 0, object);
969         return hr;
970     }
971
972     TRACE("Created depthstencil state %p.\n", object);
973     *depth_stencil_state = (ID3D10DepthStencilState *)object;
974
975     return S_OK;
976 }
977
978 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateRasterizerState(ID3D10Device *iface,
979         const D3D10_RASTERIZER_DESC *desc, ID3D10RasterizerState **rasterizer_state)
980 {
981     struct d3d10_rasterizer_state *object;
982     HRESULT hr;
983
984     TRACE("iface %p, desc %p, rasterizer_state %p.\n", iface, desc, rasterizer_state);
985
986     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
987     if (!object)
988     {
989         ERR("Failed to allocate D3D10 rasterizer state object memory.\n");
990         return E_OUTOFMEMORY;
991     }
992
993     hr = d3d10_rasterizer_state_init(object);
994     if (FAILED(hr))
995     {
996         WARN("Failed to initialize rasterizer state, hr %#x.\n", hr);
997         HeapFree(GetProcessHeap(), 0, object);
998         return hr;
999     }
1000
1001     TRACE("Created rasterizer state %p.\n", object);
1002     *rasterizer_state = (ID3D10RasterizerState *)object;
1003
1004     return S_OK;
1005 }
1006
1007 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateSamplerState(ID3D10Device *iface,
1008         const D3D10_SAMPLER_DESC *desc, ID3D10SamplerState **sampler_state)
1009 {
1010     struct d3d10_sampler_state *object;
1011     HRESULT hr;
1012
1013     FIXME("iface %p, desc %p, sampler_state %p.\n", iface, desc, sampler_state);
1014
1015     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
1016     if (!object)
1017     {
1018         ERR("Failed to allocate D3D10 sampler state object memory.\n");
1019         return E_OUTOFMEMORY;
1020     }
1021
1022     hr = d3d10_sampler_state_init(object);
1023     if (FAILED(hr))
1024     {
1025         WARN("Failed to initialize sampler state, hr %#x.\n", hr);
1026         HeapFree(GetProcessHeap(), 0, object);
1027         return hr;
1028     }
1029
1030     TRACE("Created sampler state %p.\n", object);
1031     *sampler_state = (ID3D10SamplerState *)object;
1032
1033     return S_OK;
1034 }
1035
1036 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateQuery(ID3D10Device *iface,
1037         const D3D10_QUERY_DESC *desc, ID3D10Query **query)
1038 {
1039     FIXME("iface %p, desc %p, query %p stub!\n", iface, desc, query);
1040
1041     return E_NOTIMPL;
1042 }
1043
1044 static HRESULT STDMETHODCALLTYPE d3d10_device_CreatePredicate(ID3D10Device *iface,
1045         const D3D10_QUERY_DESC *desc, ID3D10Predicate **predicate)
1046 {
1047     FIXME("iface %p, desc %p, predicate %p stub!\n", iface, desc, predicate);
1048
1049     return E_NOTIMPL;
1050 }
1051
1052 static HRESULT STDMETHODCALLTYPE d3d10_device_CreateCounter(ID3D10Device *iface,
1053         const D3D10_COUNTER_DESC *desc, ID3D10Counter **counter)
1054 {
1055     FIXME("iface %p, desc %p, counter %p stub!\n", iface, desc, counter);
1056
1057     return E_NOTIMPL;
1058 }
1059
1060 static HRESULT STDMETHODCALLTYPE d3d10_device_CheckFormatSupport(ID3D10Device *iface,
1061         DXGI_FORMAT format, UINT *format_support)
1062 {
1063     FIXME("iface %p, format %s, format_support %p stub!\n",
1064             iface, debug_dxgi_format(format), format_support);
1065
1066     return E_NOTIMPL;
1067 }
1068
1069 static HRESULT STDMETHODCALLTYPE d3d10_device_CheckMultisampleQualityLevels(ID3D10Device *iface,
1070         DXGI_FORMAT format, UINT sample_count, UINT *quality_level_count)
1071 {
1072     FIXME("iface %p, format %s, sample_count %u, quality_level_count %p stub!\n",
1073             iface, debug_dxgi_format(format), sample_count, quality_level_count);
1074
1075     return E_NOTIMPL;
1076 }
1077
1078 static void STDMETHODCALLTYPE d3d10_device_CheckCounterInfo(ID3D10Device *iface, D3D10_COUNTER_INFO *counter_info)
1079 {
1080     FIXME("iface %p, counter_info %p stub!\n", iface, counter_info);
1081 }
1082
1083 static HRESULT STDMETHODCALLTYPE d3d10_device_CheckCounter(ID3D10Device *iface,
1084         const D3D10_COUNTER_DESC *desc, D3D10_COUNTER_TYPE *type, UINT *active_counters, LPSTR name,
1085         UINT *name_length, LPSTR units, UINT *units_length, LPSTR description, UINT *description_length)
1086 {
1087     FIXME("iface %p, desc %p, type %p, active_counters %p, name %p, name_length %p,\n"
1088             "\tunits %p, units_length %p, description %p, description_length %p stub!\n",
1089             iface, desc, type, active_counters, name, name_length,
1090             units, units_length, description, description_length);
1091
1092     return E_NOTIMPL;
1093 }
1094
1095 static UINT STDMETHODCALLTYPE d3d10_device_GetCreationFlags(ID3D10Device *iface)
1096 {
1097     FIXME("iface %p stub!\n", iface);
1098
1099     return 0;
1100 }
1101
1102 static HRESULT STDMETHODCALLTYPE d3d10_device_OpenSharedResource(ID3D10Device *iface,
1103         HANDLE resource_handle, REFIID guid, void **resource)
1104 {
1105     FIXME("iface %p, resource_handle %p, guid %s, resource %p stub!\n",
1106             iface, resource_handle, debugstr_guid(guid), resource);
1107
1108     return E_NOTIMPL;
1109 }
1110
1111 static void STDMETHODCALLTYPE d3d10_device_SetTextFilterSize(ID3D10Device *iface, UINT width, UINT height)
1112 {
1113     FIXME("iface %p, width %u, height %u stub!\n", iface, width, height);
1114 }
1115
1116 static void STDMETHODCALLTYPE d3d10_device_GetTextFilterSize(ID3D10Device *iface, UINT *width, UINT *height)
1117 {
1118     FIXME("iface %p, width %p, height %p stub!\n", iface, width, height);
1119 }
1120
1121 static const struct ID3D10DeviceVtbl d3d10_device_vtbl =
1122 {
1123     /* IUnknown methods */
1124     d3d10_device_QueryInterface,
1125     d3d10_device_AddRef,
1126     d3d10_device_Release,
1127     /* ID3D10Device methods */
1128     d3d10_device_VSSetConstantBuffers,
1129     d3d10_device_PSSetShaderResources,
1130     d3d10_device_PSSetShader,
1131     d3d10_device_PSSetSamplers,
1132     d3d10_device_VSSetShader,
1133     d3d10_device_DrawIndexed,
1134     d3d10_device_Draw,
1135     d3d10_device_PSSetConstantBuffers,
1136     d3d10_device_IASetInputLayout,
1137     d3d10_device_IASetVertexBuffers,
1138     d3d10_device_IASetIndexBuffer,
1139     d3d10_device_DrawIndexedInstanced,
1140     d3d10_device_DrawInstanced,
1141     d3d10_device_GSSetConstantBuffers,
1142     d3d10_device_GSSetShader,
1143     d3d10_device_IASetPrimitiveTopology,
1144     d3d10_device_VSSetShaderResources,
1145     d3d10_device_VSSetSamplers,
1146     d3d10_device_SetPredication,
1147     d3d10_device_GSSetShaderResources,
1148     d3d10_device_GSSetSamplers,
1149     d3d10_device_OMSetRenderTargets,
1150     d3d10_device_OMSetBlendState,
1151     d3d10_device_OMSetDepthStencilState,
1152     d3d10_device_SOSetTargets,
1153     d3d10_device_DrawAuto,
1154     d3d10_device_RSSetState,
1155     d3d10_device_RSSetViewports,
1156     d3d10_device_RSSetScissorRects,
1157     d3d10_device_CopySubresourceRegion,
1158     d3d10_device_CopyResource,
1159     d3d10_device_UpdateSubresource,
1160     d3d10_device_ClearRenderTargetView,
1161     d3d10_device_ClearDepthStencilView,
1162     d3d10_device_GenerateMips,
1163     d3d10_device_ResolveSubresource,
1164     d3d10_device_VSGetConstantBuffers,
1165     d3d10_device_PSGetShaderResources,
1166     d3d10_device_PSGetShader,
1167     d3d10_device_PSGetSamplers,
1168     d3d10_device_VSGetShader,
1169     d3d10_device_PSGetConstantBuffers,
1170     d3d10_device_IAGetInputLayout,
1171     d3d10_device_IAGetVertexBuffers,
1172     d3d10_device_IAGetIndexBuffer,
1173     d3d10_device_GSGetConstantBuffers,
1174     d3d10_device_GSGetShader,
1175     d3d10_device_IAGetPrimitiveTopology,
1176     d3d10_device_VSGetShaderResources,
1177     d3d10_device_VSGetSamplers,
1178     d3d10_device_GetPredication,
1179     d3d10_device_GSGetShaderResources,
1180     d3d10_device_GSGetSamplers,
1181     d3d10_device_OMGetRenderTargets,
1182     d3d10_device_OMGetBlendState,
1183     d3d10_device_OMGetDepthStencilState,
1184     d3d10_device_SOGetTargets,
1185     d3d10_device_RSGetState,
1186     d3d10_device_RSGetViewports,
1187     d3d10_device_RSGetScissorRects,
1188     d3d10_device_GetDeviceRemovedReason,
1189     d3d10_device_SetExceptionMode,
1190     d3d10_device_GetExceptionMode,
1191     d3d10_device_GetPrivateData,
1192     d3d10_device_SetPrivateData,
1193     d3d10_device_SetPrivateDataInterface,
1194     d3d10_device_ClearState,
1195     d3d10_device_Flush,
1196     d3d10_device_CreateBuffer,
1197     d3d10_device_CreateTexture1D,
1198     d3d10_device_CreateTexture2D,
1199     d3d10_device_CreateTexture3D,
1200     d3d10_device_CreateShaderResourceView,
1201     d3d10_device_CreateRenderTargetView,
1202     d3d10_device_CreateDepthStencilView,
1203     d3d10_device_CreateInputLayout,
1204     d3d10_device_CreateVertexShader,
1205     d3d10_device_CreateGeometryShader,
1206     d3d10_device_CreateGeometryShaderWithStreamOutput,
1207     d3d10_device_CreatePixelShader,
1208     d3d10_device_CreateBlendState,
1209     d3d10_device_CreateDepthStencilState,
1210     d3d10_device_CreateRasterizerState,
1211     d3d10_device_CreateSamplerState,
1212     d3d10_device_CreateQuery,
1213     d3d10_device_CreatePredicate,
1214     d3d10_device_CreateCounter,
1215     d3d10_device_CheckFormatSupport,
1216     d3d10_device_CheckMultisampleQualityLevels,
1217     d3d10_device_CheckCounterInfo,
1218     d3d10_device_CheckCounter,
1219     d3d10_device_GetCreationFlags,
1220     d3d10_device_OpenSharedResource,
1221     d3d10_device_SetTextFilterSize,
1222     d3d10_device_GetTextFilterSize,
1223 };
1224
1225 static const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl =
1226 {
1227     /* IUnknown methods */
1228     d3d10_device_inner_QueryInterface,
1229     d3d10_device_inner_AddRef,
1230     d3d10_device_inner_Release,
1231 };
1232
1233 /* IWineD3DDeviceParent IUnknown methods */
1234
1235 static inline struct d3d10_device *device_from_device_parent(IWineD3DDeviceParent *iface)
1236 {
1237     return (struct d3d10_device *)((char*)iface - FIELD_OFFSET(struct d3d10_device, device_parent_vtbl));
1238 }
1239
1240 static HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface, REFIID riid, void **object)
1241 {
1242     struct d3d10_device *This = device_from_device_parent(iface);
1243     return d3d10_device_QueryInterface((ID3D10Device *)This, riid, object);
1244 }
1245
1246 static ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
1247 {
1248     struct d3d10_device *This = device_from_device_parent(iface);
1249     return d3d10_device_AddRef((ID3D10Device *)This);
1250 }
1251
1252 static ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
1253 {
1254     struct d3d10_device *This = device_from_device_parent(iface);
1255     return d3d10_device_Release((ID3D10Device *)This);
1256 }
1257
1258 /* IWineD3DDeviceParent methods */
1259
1260 static void STDMETHODCALLTYPE device_parent_WineD3DDeviceCreated(IWineD3DDeviceParent *iface, IWineD3DDevice *device)
1261 {
1262     struct d3d10_device *This = device_from_device_parent(iface);
1263
1264     TRACE("iface %p, device %p\n", iface, device);
1265
1266     IWineD3DDevice_AddRef(device);
1267     This->wined3d_device = device;
1268 }
1269
1270 static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParent *iface,
1271         IUnknown *superior, UINT width, UINT height, WINED3DFORMAT format, DWORD usage,
1272         WINED3DPOOL pool, UINT level, WINED3DCUBEMAP_FACES face, IWineD3DSurface **surface)
1273 {
1274     struct d3d10_device *This = device_from_device_parent(iface);
1275     struct d3d10_texture2d *texture;
1276     D3D10_TEXTURE2D_DESC desc;
1277     HRESULT hr;
1278
1279     FIXME("iface %p, superior %p, width %u, height %u, format %#x, usage %#x,\n"
1280             "\tpool %#x, level %u, face %u, surface %p partial stub!\n",
1281             iface, superior, width, height, format, usage, pool, level, face, surface);
1282
1283     FIXME("Implement DXGI<->wined3d usage conversion\n");
1284
1285     desc.Width = width;
1286     desc.Height = height;
1287     desc.MipLevels = 1;
1288     desc.ArraySize = 1;
1289     desc.Format = dxgi_format_from_wined3dformat(format);
1290     desc.SampleDesc.Count = 1;
1291     desc.SampleDesc.Quality = 0;
1292     desc.Usage = usage;
1293     desc.BindFlags = 0;
1294     desc.CPUAccessFlags = 0;
1295     desc.MiscFlags = 0;
1296
1297     hr = d3d10_device_CreateTexture2D((ID3D10Device *)This, &desc, NULL, (ID3D10Texture2D **)&texture);
1298     if (FAILED(hr))
1299     {
1300         ERR("CreateTexture2D failed, returning %#x\n", hr);
1301         return hr;
1302     }
1303
1304     *surface = texture->wined3d_surface;
1305     IWineD3DSurface_AddRef(*surface);
1306     ID3D10Texture2D_Release((ID3D10Texture2D *)texture);
1307
1308     return S_OK;
1309 }
1310
1311 static HRESULT STDMETHODCALLTYPE device_parent_CreateRenderTarget(IWineD3DDeviceParent *iface,
1312         IUnknown *superior, UINT width, UINT height, WINED3DFORMAT format, WINED3DMULTISAMPLE_TYPE multisample_type,
1313         DWORD multisample_quality, BOOL lockable, IWineD3DSurface **surface)
1314 {
1315     struct d3d10_device *This = device_from_device_parent(iface);
1316     struct d3d10_texture2d *texture;
1317     D3D10_TEXTURE2D_DESC desc;
1318     HRESULT hr;
1319
1320     FIXME("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
1321             "\tmultisample_quality %u, lockable %u, surface %p partial stub!\n",
1322             iface, superior, width, height, format, multisample_type, multisample_quality, lockable, surface);
1323
1324     FIXME("Implement DXGI<->wined3d usage conversion\n");
1325
1326     desc.Width = width;
1327     desc.Height = height;
1328     desc.MipLevels = 1;
1329     desc.ArraySize = 1;
1330     desc.Format = dxgi_format_from_wined3dformat(format);
1331     desc.SampleDesc.Count = multisample_type ? multisample_type : 1;
1332     desc.SampleDesc.Quality = multisample_quality;
1333     desc.Usage = D3D10_USAGE_DEFAULT;
1334     desc.BindFlags = D3D10_BIND_RENDER_TARGET;
1335     desc.CPUAccessFlags = 0;
1336     desc.MiscFlags = 0;
1337
1338     hr = d3d10_device_CreateTexture2D((ID3D10Device *)This, &desc, NULL, (ID3D10Texture2D **)&texture);
1339     if (FAILED(hr))
1340     {
1341         ERR("CreateTexture2D failed, returning %#x\n", hr);
1342         return hr;
1343     }
1344
1345     *surface = texture->wined3d_surface;
1346     IWineD3DSurface_AddRef(*surface);
1347     ID3D10Texture2D_Release((ID3D10Texture2D *)texture);
1348
1349     return S_OK;
1350 }
1351
1352 static HRESULT STDMETHODCALLTYPE device_parent_CreateDepthStencilSurface(IWineD3DDeviceParent *iface,
1353         IUnknown *superior, UINT width, UINT height, WINED3DFORMAT format, WINED3DMULTISAMPLE_TYPE multisample_type,
1354         DWORD multisample_quality, BOOL discard, IWineD3DSurface **surface)
1355 {
1356     struct d3d10_device *This = device_from_device_parent(iface);
1357     struct d3d10_texture2d *texture;
1358     D3D10_TEXTURE2D_DESC desc;
1359     HRESULT hr;
1360
1361     FIXME("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
1362             "\tmultisample_quality %u, discard %u, surface %p partial stub!\n",
1363             iface, superior, width, height, format, multisample_type, multisample_quality, discard, surface);
1364
1365     FIXME("Implement DXGI<->wined3d usage conversion\n");
1366
1367     desc.Width = width;
1368     desc.Height = height;
1369     desc.MipLevels = 1;
1370     desc.ArraySize = 1;
1371     desc.Format = dxgi_format_from_wined3dformat(format);
1372     desc.SampleDesc.Count = multisample_type ? multisample_type : 1;
1373     desc.SampleDesc.Quality = multisample_quality;
1374     desc.Usage = D3D10_USAGE_DEFAULT;
1375     desc.BindFlags = D3D10_BIND_RENDER_TARGET;
1376     desc.CPUAccessFlags = 0;
1377     desc.MiscFlags = 0;
1378
1379     hr = d3d10_device_CreateTexture2D((ID3D10Device *)This, &desc, NULL, (ID3D10Texture2D **)&texture);
1380     if (FAILED(hr))
1381     {
1382         ERR("CreateTexture2D failed, returning %#x\n", hr);
1383         return hr;
1384     }
1385
1386     *surface = texture->wined3d_surface;
1387     IWineD3DSurface_AddRef(*surface);
1388     ID3D10Texture2D_Release((ID3D10Texture2D *)texture);
1389
1390     return S_OK;
1391 }
1392
1393 static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent *iface,
1394         IUnknown *superior, UINT width, UINT height, UINT depth, WINED3DFORMAT format,
1395         WINED3DPOOL pool, DWORD usage, IWineD3DVolume **volume)
1396 {
1397     FIXME("iface %p, superior %p, width %u, height %u, depth %u, format %#x, pool %#x, usage %#x, volume %p stub!\n",
1398             iface, superior, width, height, depth, format, pool, usage, volume);
1399
1400     return E_NOTIMPL;
1401 }
1402
1403 static HRESULT STDMETHODCALLTYPE device_parent_CreateSwapChain(IWineD3DDeviceParent *iface,
1404         WINED3DPRESENT_PARAMETERS *present_parameters, IWineD3DSwapChain **swapchain)
1405 {
1406     IWineDXGIDevice *wine_device;
1407     HRESULT hr;
1408
1409     TRACE("iface %p, present_parameters %p, swapchain %p\n", iface, present_parameters, swapchain);
1410
1411     hr = IWineD3DDeviceParent_QueryInterface(iface, &IID_IWineDXGIDevice, (void **)&wine_device);
1412     if (FAILED(hr))
1413     {
1414         ERR("Device should implement IWineDXGIDevice\n");
1415         return E_FAIL;
1416     }
1417
1418     hr = IWineDXGIDevice_create_swapchain(wine_device, present_parameters, swapchain);
1419     IWineDXGIDevice_Release(wine_device);
1420     if (FAILED(hr))
1421     {
1422         ERR("Failed to create DXGI swapchain, returning %#x\n", hr);
1423         return hr;
1424     }
1425
1426     return S_OK;
1427 }
1428
1429 static const struct IWineD3DDeviceParentVtbl d3d10_wined3d_device_parent_vtbl =
1430 {
1431     /* IUnknown methods */
1432     device_parent_QueryInterface,
1433     device_parent_AddRef,
1434     device_parent_Release,
1435     /* IWineD3DDeviceParent methods */
1436     device_parent_WineD3DDeviceCreated,
1437     device_parent_CreateSurface,
1438     device_parent_CreateRenderTarget,
1439     device_parent_CreateDepthStencilSurface,
1440     device_parent_CreateVolume,
1441     device_parent_CreateSwapChain,
1442 };
1443
1444 void d3d10_device_init(struct d3d10_device *device, void *outer_unknown)
1445 {
1446     device->vtbl = &d3d10_device_vtbl;
1447     device->inner_unknown_vtbl = &d3d10_device_inner_unknown_vtbl;
1448     device->device_parent_vtbl = &d3d10_wined3d_device_parent_vtbl;
1449     device->refcount = 1;
1450     device->outer_unknown = outer_unknown;
1451 }