st/nine: Track bindings for buffers
[mesa.git] / src / gallium / state_trackers / nine / device9.c
1 /*
2 * Copyright 2011 Joakim Sindholt <opensource@zhasha.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "device9.h"
24 #include "stateblock9.h"
25 #include "surface9.h"
26 #include "swapchain9.h"
27 #include "swapchain9ex.h"
28 #include "indexbuffer9.h"
29 #include "vertexbuffer9.h"
30 #include "vertexdeclaration9.h"
31 #include "vertexshader9.h"
32 #include "pixelshader9.h"
33 #include "query9.h"
34 #include "texture9.h"
35 #include "cubetexture9.h"
36 #include "volumetexture9.h"
37 #include "nine_helpers.h"
38 #include "nine_pipe.h"
39 #include "nine_ff.h"
40 #include "nine_dump.h"
41 #include "nine_limits.h"
42
43 #include "pipe/p_screen.h"
44 #include "pipe/p_context.h"
45 #include "pipe/p_config.h"
46 #include "util/u_math.h"
47 #include "util/u_inlines.h"
48 #include "util/u_hash_table.h"
49 #include "util/u_format.h"
50 #include "util/u_surface.h"
51 #include "util/u_upload_mgr.h"
52 #include "hud/hud_context.h"
53
54 #include "cso_cache/cso_context.h"
55
56 #define DBG_CHANNEL DBG_DEVICE
57
58 #if defined(PIPE_CC_GCC) && (defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64))
59
60 static void nine_setup_fpu()
61 {
62 uint16_t c;
63
64 __asm__ __volatile__ ("fnstcw %0" : "=m" (*&c));
65
66 /* clear the control word */
67 c &= 0xF0C0;
68 /* d3d9 doc/wine tests: mask all exceptions, use single-precision
69 * and round to nearest */
70 c |= 0x003F;
71
72 __asm__ __volatile__ ("fldcw %0" : : "m" (*&c));
73 }
74
75 #else
76
77 static void nine_setup_fpu(void)
78 {
79 WARN_ONCE("FPU setup not supported on non-x86 platforms\n");
80 }
81
82 #endif
83
84 void
85 NineDevice9_SetDefaultState( struct NineDevice9 *This, boolean is_reset )
86 {
87 struct NineSurface9 *refSurf = NULL;
88
89 DBG("This=%p is_reset=%d\n", This, (int) is_reset);
90
91 assert(!This->is_recording);
92
93 nine_state_set_defaults(This, &This->caps, is_reset);
94
95 refSurf = This->swapchains[0]->buffers[0];
96 assert(refSurf);
97
98 This->state.viewport.X = 0;
99 This->state.viewport.Y = 0;
100 This->state.viewport.Width = refSurf->desc.Width;
101 This->state.viewport.Height = refSurf->desc.Height;
102
103 nine_context_set_viewport(This, &This->state.viewport);
104
105 This->state.scissor.minx = 0;
106 This->state.scissor.miny = 0;
107 This->state.scissor.maxx = refSurf->desc.Width;
108 This->state.scissor.maxy = refSurf->desc.Height;
109
110 nine_context_set_scissor(This, &This->state.scissor);
111
112 if (This->nswapchains && This->swapchains[0]->params.EnableAutoDepthStencil) {
113 nine_context_set_render_state(This, D3DRS_ZENABLE, TRUE);
114 This->state.rs_advertised[D3DRS_ZENABLE] = TRUE;
115 }
116 if (This->state.rs_advertised[D3DRS_ZENABLE])
117 NineDevice9_SetDepthStencilSurface(
118 This, (IDirect3DSurface9 *)This->swapchains[0]->zsbuf);
119 }
120
121 #define GET_PCAP(n) pScreen->get_param(pScreen, PIPE_CAP_##n)
122 HRESULT
123 NineDevice9_ctor( struct NineDevice9 *This,
124 struct NineUnknownParams *pParams,
125 struct pipe_screen *pScreen,
126 D3DDEVICE_CREATION_PARAMETERS *pCreationParameters,
127 D3DCAPS9 *pCaps,
128 D3DPRESENT_PARAMETERS *pPresentationParameters,
129 IDirect3D9 *pD3D9,
130 ID3DPresentGroup *pPresentationGroup,
131 struct d3dadapter9_context *pCTX,
132 boolean ex,
133 D3DDISPLAYMODEEX *pFullscreenDisplayMode,
134 int minorVersionNum )
135 {
136 unsigned i;
137 HRESULT hr = NineUnknown_ctor(&This->base, pParams);
138
139 DBG("This=%p pParams=%p pScreen=%p pCreationParameters=%p pCaps=%p pPresentationParameters=%p "
140 "pD3D9=%p pPresentationGroup=%p pCTX=%p ex=%d pFullscreenDisplayMode=%p\n",
141 This, pParams, pScreen, pCreationParameters, pCaps, pPresentationParameters, pD3D9,
142 pPresentationGroup, pCTX, (int) ex, pFullscreenDisplayMode);
143
144 if (FAILED(hr)) { return hr; }
145
146 list_inithead(&This->update_buffers);
147 list_inithead(&This->update_textures);
148 list_inithead(&This->managed_buffers);
149 list_inithead(&This->managed_textures);
150
151 This->screen = pScreen;
152 This->screen_sw = pCTX->ref;
153 This->caps = *pCaps;
154 This->d3d9 = pD3D9;
155 This->params = *pCreationParameters;
156 This->ex = ex;
157 This->present = pPresentationGroup;
158 This->minor_version_num = minorVersionNum;
159
160 IDirect3D9_AddRef(This->d3d9);
161 ID3DPresentGroup_AddRef(This->present);
162
163 if (!(This->params.BehaviorFlags & D3DCREATE_FPU_PRESERVE))
164 nine_setup_fpu();
165
166 if (This->params.BehaviorFlags & D3DCREATE_SOFTWARE_VERTEXPROCESSING) {
167 DBG("Application asked full Software Vertex Processing.\n");
168 This->swvp = true;
169 This->may_swvp = true;
170 } else
171 This->swvp = false;
172 if (This->params.BehaviorFlags & D3DCREATE_MIXED_VERTEXPROCESSING) {
173 DBG("Application asked mixed Software Vertex Processing.\n");
174 This->may_swvp = true;
175 }
176 This->context.swvp = This->swvp;
177 /* TODO: check if swvp is resetted by device Resets */
178
179 if (This->may_swvp &&
180 (This->screen->get_shader_param(This->screen, PIPE_SHADER_VERTEX,
181 PIPE_SHADER_CAP_MAX_CONST_BUFFER_SIZE)
182 < (NINE_MAX_CONST_F_SWVP/2) * sizeof(float[4]) ||
183 This->screen->get_shader_param(This->screen, PIPE_SHADER_VERTEX,
184 PIPE_SHADER_CAP_MAX_CONST_BUFFERS) < 5)) {
185 /* Note: We just go on, some apps never use the abilities of
186 * swvp, and just set more constants than allowed at init.
187 * Only cards we support that are affected are the r500 */
188 WARN("Card unable to handle Software Vertex Processing. Game may fail\n");
189 }
190
191 /* When may_swvp, SetConstant* limits are different */
192 if (This->may_swvp)
193 This->caps.MaxVertexShaderConst = NINE_MAX_CONST_F_SWVP;
194
195 This->context.pipe = This->screen->context_create(This->screen, NULL, 0);
196 if (!This->context.pipe) { return E_OUTOFMEMORY; } /* guess */
197 This->pipe_sw = This->screen_sw->context_create(This->screen_sw, NULL, 0);
198 if (!This->pipe_sw) { return E_OUTOFMEMORY; }
199
200 This->context.cso = cso_create_context(This->context.pipe);
201 if (!This->context.cso) { return E_OUTOFMEMORY; } /* also a guess */
202 This->cso_sw = cso_create_context(This->pipe_sw);
203 if (!This->cso_sw) { return E_OUTOFMEMORY; }
204
205 /* Create first, it messes up our state. */
206 This->hud = hud_create(This->context.pipe, This->context.cso); /* NULL result is fine */
207
208 /* Available memory counter. Updated only for allocations with this device
209 * instance. This is the Win 7 behavior.
210 * Win XP shares this counter across multiple devices. */
211 This->available_texture_mem = This->screen->get_param(This->screen, PIPE_CAP_VIDEO_MEMORY);
212 if (This->available_texture_mem < 4096)
213 This->available_texture_mem <<= 20;
214 else
215 This->available_texture_mem = UINT_MAX;
216 /* We cap texture memory usage to 80% of what is reported free initially
217 * This helps get closer Win behaviour. For example VertexBuffer allocation
218 * still succeeds when texture allocation fails. */
219 This->available_texture_limit = This->available_texture_mem * 20LL / 100LL;
220
221 /* create implicit swapchains */
222 This->nswapchains = ID3DPresentGroup_GetMultiheadCount(This->present);
223 This->swapchains = CALLOC(This->nswapchains,
224 sizeof(struct NineSwapChain9 *));
225 if (!This->swapchains) { return E_OUTOFMEMORY; }
226
227 for (i = 0; i < This->nswapchains; ++i) {
228 ID3DPresent *present;
229
230 hr = ID3DPresentGroup_GetPresent(This->present, i, &present);
231 if (FAILED(hr))
232 return hr;
233
234 if (ex) {
235 D3DDISPLAYMODEEX *mode = NULL;
236 struct NineSwapChain9Ex **ret =
237 (struct NineSwapChain9Ex **)&This->swapchains[i];
238
239 if (pFullscreenDisplayMode) mode = &(pFullscreenDisplayMode[i]);
240 /* when this is a Device9Ex, it should create SwapChain9Exs */
241 hr = NineSwapChain9Ex_new(This, TRUE, present,
242 &pPresentationParameters[i], pCTX,
243 This->params.hFocusWindow, mode, ret);
244 } else {
245 hr = NineSwapChain9_new(This, TRUE, present,
246 &pPresentationParameters[i], pCTX,
247 This->params.hFocusWindow,
248 &This->swapchains[i]);
249 }
250
251 ID3DPresent_Release(present);
252 if (FAILED(hr))
253 return hr;
254 NineUnknown_ConvertRefToBind(NineUnknown(This->swapchains[i]));
255
256 hr = NineSwapChain9_GetBackBuffer(This->swapchains[i], 0,
257 D3DBACKBUFFER_TYPE_MONO,
258 (IDirect3DSurface9 **)
259 &This->state.rt[i]);
260 if (FAILED(hr))
261 return hr;
262 NineUnknown_ConvertRefToBind(NineUnknown(This->state.rt[i]));
263 nine_bind(&This->context.rt[i], This->state.rt[i]);
264 }
265
266 /* Initialize CSMT */
267 if (pCTX->csmt_force == 1)
268 This->csmt_active = true;
269 else if (pCTX->csmt_force == 0)
270 This->csmt_active = false;
271 else
272 /* r600 and radeonsi are thread safe. */
273 This->csmt_active = strstr(pScreen->get_name(pScreen), "AMD") != NULL;
274
275 if (This->csmt_active) {
276 This->csmt_ctx = nine_csmt_create(This);
277 if (!This->csmt_ctx)
278 return E_OUTOFMEMORY;
279 }
280
281 if (This->csmt_active)
282 DBG("\033[1;32mCSMT is active\033[0m\n");
283
284 /* Initialize a dummy VBO to be used when a vertex declaration does not
285 * specify all the inputs needed by vertex shader, on win default behavior
286 * is to pass 0,0,0,0 to the shader */
287 {
288 struct pipe_transfer *transfer;
289 struct pipe_resource tmpl;
290 struct pipe_box box;
291 unsigned char *data;
292
293 memset(&tmpl, 0, sizeof(tmpl));
294 tmpl.target = PIPE_BUFFER;
295 tmpl.format = PIPE_FORMAT_R8_UNORM;
296 tmpl.width0 = 16; /* 4 floats */
297 tmpl.height0 = 1;
298 tmpl.depth0 = 1;
299 tmpl.array_size = 1;
300 tmpl.last_level = 0;
301 tmpl.nr_samples = 0;
302 tmpl.usage = PIPE_USAGE_DEFAULT;
303 tmpl.bind = PIPE_BIND_VERTEX_BUFFER;
304 tmpl.flags = 0;
305 This->dummy_vbo = pScreen->resource_create(pScreen, &tmpl);
306
307 if (!This->dummy_vbo)
308 return D3DERR_OUTOFVIDEOMEMORY;
309
310 u_box_1d(0, 16, &box);
311 data = This->context.pipe->transfer_map(This->context.pipe, This->dummy_vbo, 0,
312 PIPE_TRANSFER_WRITE |
313 PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE,
314 &box, &transfer);
315 assert(data);
316 assert(transfer);
317 memset(data, 0, 16);
318 This->context.pipe->transfer_unmap(This->context.pipe, transfer);
319 }
320
321 This->cursor.software = FALSE;
322 This->cursor.hotspot.x = -1;
323 This->cursor.hotspot.y = -1;
324 {
325 struct pipe_resource tmpl;
326 memset(&tmpl, 0, sizeof(tmpl));
327 tmpl.target = PIPE_TEXTURE_2D;
328 tmpl.format = PIPE_FORMAT_R8G8B8A8_UNORM;
329 tmpl.width0 = 64;
330 tmpl.height0 = 64;
331 tmpl.depth0 = 1;
332 tmpl.array_size = 1;
333 tmpl.last_level = 0;
334 tmpl.nr_samples = 0;
335 tmpl.usage = PIPE_USAGE_DEFAULT;
336 tmpl.bind = PIPE_BIND_CURSOR | PIPE_BIND_SAMPLER_VIEW;
337 tmpl.flags = 0;
338
339 This->cursor.image = pScreen->resource_create(pScreen, &tmpl);
340 if (!This->cursor.image)
341 return D3DERR_OUTOFVIDEOMEMORY;
342
343 /* For uploading 32x32 (argb) cursor */
344 This->cursor.hw_upload_temp = MALLOC(32 * 4 * 32);
345 if (!This->cursor.hw_upload_temp)
346 return D3DERR_OUTOFVIDEOMEMORY;
347 }
348
349 /* Create constant buffers. */
350 {
351 unsigned max_const_vs, max_const_ps;
352
353 /* vs 3.0: >= 256 float constants, but for cards with exactly 256 slots,
354 * we have to take in some more slots for int and bool*/
355 max_const_vs = _min(pScreen->get_shader_param(pScreen, PIPE_SHADER_VERTEX,
356 PIPE_SHADER_CAP_MAX_CONST_BUFFER_SIZE) /
357 sizeof(float[4]),
358 NINE_MAX_CONST_ALL);
359 /* ps 3.0: 224 float constants. All cards supported support at least
360 * 256 constants for ps */
361 max_const_ps = NINE_MAX_CONST_F_PS3 + (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4);
362
363 This->max_vs_const_f = max_const_vs -
364 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4);
365 This->max_ps_const_f = max_const_ps -
366 (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4);
367
368 This->vs_const_size = max_const_vs * sizeof(float[4]);
369 This->ps_const_size = max_const_ps * sizeof(float[4]);
370 /* Include space for I,B constants for user constbuf. */
371 if (This->may_swvp) {
372 This->state.vs_const_f = CALLOC(NINE_MAX_CONST_F_SWVP * sizeof(float[4]),1);
373 This->context.vs_const_f_swvp = CALLOC(NINE_MAX_CONST_F_SWVP * sizeof(float[4]),1);
374 if (!This->context.vs_const_f_swvp)
375 return E_OUTOFMEMORY;
376 This->state.vs_lconstf_temp = CALLOC(NINE_MAX_CONST_F_SWVP * sizeof(float[4]),1);
377 This->context.vs_lconstf_temp = CALLOC(NINE_MAX_CONST_F_SWVP * sizeof(float[4]),1);
378 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I_SWVP * sizeof(int[4]), 1);
379 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I_SWVP * sizeof(int[4]), 1);
380 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B_SWVP * sizeof(BOOL), 1);
381 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B_SWVP * sizeof(BOOL), 1);
382 } else {
383 This->state.vs_const_f = CALLOC(NINE_MAX_CONST_F * sizeof(float[4]), 1);
384 This->context.vs_const_f_swvp = NULL;
385 This->state.vs_lconstf_temp = CALLOC(This->vs_const_size,1);
386 This->context.vs_lconstf_temp = CALLOC(This->vs_const_size,1);
387 This->state.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1);
388 This->context.vs_const_i = CALLOC(NINE_MAX_CONST_I * sizeof(int[4]), 1);
389 This->state.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1);
390 This->context.vs_const_b = CALLOC(NINE_MAX_CONST_B * sizeof(BOOL), 1);
391 }
392 This->context.vs_const_f = CALLOC(This->vs_const_size, 1);
393 This->state.ps_const_f = CALLOC(This->ps_const_size, 1);
394 This->context.ps_const_f = CALLOC(This->ps_const_size, 1);
395 This->context.ps_lconstf_temp = CALLOC(This->ps_const_size,1);
396 if (!This->state.vs_const_f || !This->context.vs_const_f ||
397 !This->state.ps_const_f || !This->context.ps_const_f ||
398 !This->state.vs_lconstf_temp || !This->context.vs_lconstf_temp ||
399 !This->context.ps_lconstf_temp ||
400 !This->state.vs_const_i || !This->context.vs_const_i ||
401 !This->state.vs_const_b || !This->context.vs_const_b)
402 return E_OUTOFMEMORY;
403
404 if (strstr(pScreen->get_name(pScreen), "AMD") ||
405 strstr(pScreen->get_name(pScreen), "ATI")) {
406 This->driver_bugs.buggy_barycentrics = TRUE;
407 }
408 }
409
410 /* allocate dummy texture/sampler for when there are missing ones bound */
411 {
412 struct pipe_resource tmplt;
413 struct pipe_sampler_view templ;
414 struct pipe_sampler_state samp;
415 memset(&tmplt, 0, sizeof(tmplt));
416 memset(&samp, 0, sizeof(samp));
417
418 tmplt.target = PIPE_TEXTURE_2D;
419 tmplt.width0 = 1;
420 tmplt.height0 = 1;
421 tmplt.depth0 = 1;
422 tmplt.last_level = 0;
423 tmplt.array_size = 1;
424 tmplt.usage = PIPE_USAGE_DEFAULT;
425 tmplt.flags = 0;
426 tmplt.format = PIPE_FORMAT_B8G8R8A8_UNORM;
427 tmplt.bind = PIPE_BIND_SAMPLER_VIEW;
428 tmplt.nr_samples = 0;
429
430 This->dummy_texture = This->screen->resource_create(This->screen, &tmplt);
431 if (!This->dummy_texture)
432 return D3DERR_DRIVERINTERNALERROR;
433
434 templ.format = PIPE_FORMAT_B8G8R8A8_UNORM;
435 templ.u.tex.first_layer = 0;
436 templ.u.tex.last_layer = 0;
437 templ.u.tex.first_level = 0;
438 templ.u.tex.last_level = 0;
439 templ.swizzle_r = PIPE_SWIZZLE_0;
440 templ.swizzle_g = PIPE_SWIZZLE_0;
441 templ.swizzle_b = PIPE_SWIZZLE_0;
442 templ.swizzle_a = PIPE_SWIZZLE_1;
443 templ.target = This->dummy_texture->target;
444
445 This->dummy_sampler_view = This->context.pipe->create_sampler_view(This->context.pipe, This->dummy_texture, &templ);
446 if (!This->dummy_sampler_view)
447 return D3DERR_DRIVERINTERNALERROR;
448
449 samp.min_mip_filter = PIPE_TEX_MIPFILTER_NONE;
450 samp.max_lod = 15.0f;
451 samp.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
452 samp.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
453 samp.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
454 samp.min_img_filter = PIPE_TEX_FILTER_NEAREST;
455 samp.mag_img_filter = PIPE_TEX_FILTER_NEAREST;
456 samp.compare_mode = PIPE_TEX_COMPARE_NONE;
457 samp.compare_func = PIPE_FUNC_LEQUAL;
458 samp.normalized_coords = 1;
459 samp.seamless_cube_map = 0;
460 This->dummy_sampler_state = samp;
461 }
462
463 /* Allocate upload helper for drivers that suck (from st pov ;). */
464
465 This->driver_caps.user_vbufs = GET_PCAP(USER_VERTEX_BUFFERS) && !This->csmt_active;
466 This->driver_caps.user_ibufs = GET_PCAP(USER_INDEX_BUFFERS) && !This->csmt_active;
467 This->driver_caps.user_cbufs = GET_PCAP(USER_CONSTANT_BUFFERS);
468 This->driver_caps.user_sw_vbufs = This->screen_sw->get_param(This->screen_sw, PIPE_CAP_USER_VERTEX_BUFFERS);
469 This->driver_caps.user_sw_cbufs = This->screen_sw->get_param(This->screen_sw, PIPE_CAP_USER_CONSTANT_BUFFERS);
470
471 if (!This->driver_caps.user_vbufs)
472 This->vertex_uploader = u_upload_create(This->context.pipe, 65536,
473 PIPE_BIND_VERTEX_BUFFER, PIPE_USAGE_STREAM);
474 This->vertex_sw_uploader = u_upload_create(This->pipe_sw, 65536,
475 PIPE_BIND_VERTEX_BUFFER, PIPE_USAGE_STREAM);
476 if (!This->driver_caps.user_ibufs)
477 This->index_uploader = u_upload_create(This->context.pipe, 128 * 1024,
478 PIPE_BIND_INDEX_BUFFER, PIPE_USAGE_STREAM);
479 if (!This->driver_caps.user_cbufs) {
480 This->constbuf_alignment = GET_PCAP(CONSTANT_BUFFER_OFFSET_ALIGNMENT);
481 This->constbuf_uploader = u_upload_create(This->context.pipe, This->vs_const_size,
482 PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_STREAM);
483 }
484
485 This->constbuf_sw_uploader = u_upload_create(This->pipe_sw, 128 * 1024,
486 PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_STREAM);
487
488 This->driver_caps.window_space_position_support = GET_PCAP(TGSI_VS_WINDOW_SPACE_POSITION);
489 This->driver_caps.vs_integer = pScreen->get_shader_param(pScreen, PIPE_SHADER_VERTEX, PIPE_SHADER_CAP_INTEGERS);
490 This->driver_caps.ps_integer = pScreen->get_shader_param(pScreen, PIPE_SHADER_FRAGMENT, PIPE_SHADER_CAP_INTEGERS);
491 This->driver_caps.offset_units_unscaled = GET_PCAP(POLYGON_OFFSET_UNITS_UNSCALED);
492
493 nine_ff_init(This); /* initialize fixed function code */
494
495 NineDevice9_SetDefaultState(This, FALSE);
496
497 {
498 struct pipe_poly_stipple stipple;
499 memset(&stipple, ~0, sizeof(stipple));
500 This->context.pipe->set_polygon_stipple(This->context.pipe, &stipple);
501 }
502
503 This->update = &This->state;
504
505 nine_state_init_sw(This);
506
507 ID3DPresentGroup_Release(This->present);
508 if (This->csmt_active)
509 nine_csmt_process(This);
510
511 return D3D_OK;
512 }
513 #undef GET_PCAP
514
515 void
516 NineDevice9_dtor( struct NineDevice9 *This )
517 {
518 unsigned i;
519
520 DBG("This=%p\n", This);
521
522 /* Do not call nine_csmt_process here. The device is dead! */
523 if (This->csmt_active && This->csmt_ctx) {
524 nine_csmt_destroy(This, This->csmt_ctx);
525 This->csmt_active = FALSE;
526 This->csmt_ctx = NULL;
527 }
528
529 nine_ff_fini(This);
530 nine_state_destroy_sw(This);
531 nine_state_clear(&This->state, TRUE);
532 nine_context_clear(This);
533
534 if (This->vertex_uploader)
535 u_upload_destroy(This->vertex_uploader);
536 if (This->index_uploader)
537 u_upload_destroy(This->index_uploader);
538 if (This->constbuf_uploader)
539 u_upload_destroy(This->constbuf_uploader);
540 if (This->vertex_sw_uploader)
541 u_upload_destroy(This->vertex_sw_uploader);
542 if (This->constbuf_sw_uploader)
543 u_upload_destroy(This->constbuf_sw_uploader);
544
545 nine_bind(&This->record, NULL);
546
547 pipe_sampler_view_reference(&This->dummy_sampler_view, NULL);
548 pipe_resource_reference(&This->dummy_texture, NULL);
549 pipe_resource_reference(&This->dummy_vbo, NULL);
550 FREE(This->state.vs_const_f);
551 FREE(This->context.vs_const_f);
552 FREE(This->state.ps_const_f);
553 FREE(This->context.ps_const_f);
554 FREE(This->state.vs_lconstf_temp);
555 FREE(This->context.vs_lconstf_temp);
556 FREE(This->context.ps_lconstf_temp);
557 FREE(This->state.vs_const_i);
558 FREE(This->context.vs_const_i);
559 FREE(This->state.vs_const_b);
560 FREE(This->context.vs_const_b);
561 FREE(This->context.vs_const_f_swvp);
562
563 pipe_resource_reference(&This->cursor.image, NULL);
564 FREE(This->cursor.hw_upload_temp);
565
566 if (This->swapchains) {
567 for (i = 0; i < This->nswapchains; ++i)
568 if (This->swapchains[i])
569 NineUnknown_Unbind(NineUnknown(This->swapchains[i]));
570 FREE(This->swapchains);
571 }
572
573 /* Destroy cso first */
574 if (This->context.cso) { cso_destroy_context(This->context.cso); }
575 if (This->cso_sw) { cso_destroy_context(This->cso_sw); }
576 if (This->context.pipe && This->context.pipe->destroy) { This->context.pipe->destroy(This->context.pipe); }
577 if (This->pipe_sw && This->pipe_sw->destroy) { This->pipe_sw->destroy(This->pipe_sw); }
578
579 if (This->present) { ID3DPresentGroup_Release(This->present); }
580 if (This->d3d9) { IDirect3D9_Release(This->d3d9); }
581
582 NineUnknown_dtor(&This->base);
583 }
584
585 struct pipe_screen *
586 NineDevice9_GetScreen( struct NineDevice9 *This )
587 {
588 return This->screen;
589 }
590
591 struct pipe_context *
592 NineDevice9_GetPipe( struct NineDevice9 *This )
593 {
594 return nine_context_get_pipe(This);
595 }
596
597 const D3DCAPS9 *
598 NineDevice9_GetCaps( struct NineDevice9 *This )
599 {
600 return &This->caps;
601 }
602
603 static inline void
604 NineDevice9_PauseRecording( struct NineDevice9 *This )
605 {
606 if (This->record) {
607 This->update = &This->state;
608 This->is_recording = FALSE;
609 }
610 }
611
612 static inline void
613 NineDevice9_ResumeRecording( struct NineDevice9 *This )
614 {
615 if (This->record) {
616 This->update = &This->record->state;
617 This->is_recording = TRUE;
618 }
619 }
620
621 HRESULT NINE_WINAPI
622 NineDevice9_TestCooperativeLevel( struct NineDevice9 *This )
623 {
624 if (NineSwapChain9_GetOccluded(This->swapchains[0])) {
625 This->device_needs_reset = TRUE;
626 return D3DERR_DEVICELOST;
627 } else if (NineSwapChain9_ResolutionMismatch(This->swapchains[0])) {
628 This->device_needs_reset = TRUE;
629 return D3DERR_DEVICENOTRESET;
630 } else if (This->device_needs_reset) {
631 return D3DERR_DEVICENOTRESET;
632 }
633
634 return D3D_OK;
635 }
636
637 UINT NINE_WINAPI
638 NineDevice9_GetAvailableTextureMem( struct NineDevice9 *This )
639 {
640 return This->available_texture_mem;
641 }
642
643 HRESULT NINE_WINAPI
644 NineDevice9_EvictManagedResources( struct NineDevice9 *This )
645 {
646 struct NineBaseTexture9 *tex;
647 struct NineBuffer9 *buf;
648
649 DBG("This=%p\n", This);
650 LIST_FOR_EACH_ENTRY(tex, &This->managed_textures, list2) {
651 NineBaseTexture9_UnLoad(tex);
652 }
653 /* Vertex/index buffers don't take a lot of space and aren't accounted
654 * for d3d memory usage. Instead of actually freeing from memory,
655 * just mark the buffer dirty to trigger a re-upload later. We
656 * could just ignore, but some bad behaving apps could rely on it (if
657 * they write outside the locked regions typically). */
658 LIST_FOR_EACH_ENTRY(buf, &This->managed_buffers, managed.list2) {
659 NineBuffer9_SetDirty(buf);
660 }
661
662 return D3D_OK;
663 }
664
665 HRESULT NINE_WINAPI
666 NineDevice9_GetDirect3D( struct NineDevice9 *This,
667 IDirect3D9 **ppD3D9 )
668 {
669 user_assert(ppD3D9 != NULL, E_POINTER);
670 IDirect3D9_AddRef(This->d3d9);
671 *ppD3D9 = This->d3d9;
672 return D3D_OK;
673 }
674
675 HRESULT NINE_WINAPI
676 NineDevice9_GetDeviceCaps( struct NineDevice9 *This,
677 D3DCAPS9 *pCaps )
678 {
679 user_assert(pCaps != NULL, D3DERR_INVALIDCALL);
680 *pCaps = This->caps;
681 return D3D_OK;
682 }
683
684 HRESULT NINE_WINAPI
685 NineDevice9_GetDisplayMode( struct NineDevice9 *This,
686 UINT iSwapChain,
687 D3DDISPLAYMODE *pMode )
688 {
689 DBG("This=%p iSwapChain=%u pMode=%p\n", This, iSwapChain, pMode);
690
691 user_assert(iSwapChain < This->nswapchains, D3DERR_INVALIDCALL);
692
693 return NineSwapChain9_GetDisplayMode(This->swapchains[iSwapChain], pMode);
694 }
695
696 HRESULT NINE_WINAPI
697 NineDevice9_GetCreationParameters( struct NineDevice9 *This,
698 D3DDEVICE_CREATION_PARAMETERS *pParameters )
699 {
700 user_assert(pParameters != NULL, D3DERR_INVALIDCALL);
701 *pParameters = This->params;
702 return D3D_OK;
703 }
704
705 HRESULT NINE_WINAPI
706 NineDevice9_SetCursorProperties( struct NineDevice9 *This,
707 UINT XHotSpot,
708 UINT YHotSpot,
709 IDirect3DSurface9 *pCursorBitmap )
710 {
711 struct NineSurface9 *surf = NineSurface9(pCursorBitmap);
712 struct pipe_context *pipe = NineDevice9_GetPipe(This);
713 struct pipe_box box;
714 struct pipe_transfer *transfer;
715 BOOL hw_cursor;
716 void *ptr;
717
718 DBG_FLAG(DBG_SWAPCHAIN, "This=%p XHotSpot=%u YHotSpot=%u "
719 "pCursorBitmap=%p\n", This, XHotSpot, YHotSpot, pCursorBitmap);
720
721 user_assert(pCursorBitmap, D3DERR_INVALIDCALL);
722 user_assert(surf->desc.Format == D3DFMT_A8R8G8B8, D3DERR_INVALIDCALL);
723
724 if (This->swapchains[0]->params.Windowed) {
725 This->cursor.w = MIN2(surf->desc.Width, 32);
726 This->cursor.h = MIN2(surf->desc.Height, 32);
727 hw_cursor = 1; /* always use hw cursor for windowed mode */
728 } else {
729 This->cursor.w = MIN2(surf->desc.Width, This->cursor.image->width0);
730 This->cursor.h = MIN2(surf->desc.Height, This->cursor.image->height0);
731 hw_cursor = This->cursor.w == 32 && This->cursor.h == 32;
732 }
733
734 u_box_origin_2d(This->cursor.w, This->cursor.h, &box);
735
736 ptr = pipe->transfer_map(pipe, This->cursor.image, 0,
737 PIPE_TRANSFER_WRITE |
738 PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE,
739 &box, &transfer);
740 if (!ptr)
741 ret_err("Failed to update cursor image.\n", D3DERR_DRIVERINTERNALERROR);
742
743 This->cursor.hotspot.x = XHotSpot;
744 This->cursor.hotspot.y = YHotSpot;
745
746 /* Copy cursor image to internal storage. */
747 {
748 D3DLOCKED_RECT lock;
749 HRESULT hr;
750 const struct util_format_description *sfmt =
751 util_format_description(surf->base.info.format);
752 assert(sfmt);
753
754 hr = NineSurface9_LockRect(surf, &lock, NULL, D3DLOCK_READONLY);
755 if (FAILED(hr))
756 ret_err("Failed to map cursor source image.\n",
757 D3DERR_DRIVERINTERNALERROR);
758
759 sfmt->unpack_rgba_8unorm(ptr, transfer->stride,
760 lock.pBits, lock.Pitch,
761 This->cursor.w, This->cursor.h);
762
763 if (hw_cursor) {
764 void *data = lock.pBits;
765 /* SetCursor assumes 32x32 argb with pitch 128 */
766 if (lock.Pitch != 128) {
767 sfmt->unpack_rgba_8unorm(This->cursor.hw_upload_temp, 128,
768 lock.pBits, lock.Pitch,
769 32, 32);
770 data = This->cursor.hw_upload_temp;
771 }
772 hw_cursor = ID3DPresent_SetCursor(This->swapchains[0]->present,
773 data,
774 &This->cursor.hotspot,
775 This->cursor.visible) == D3D_OK;
776 }
777
778 NineSurface9_UnlockRect(surf);
779 }
780 pipe->transfer_unmap(pipe, transfer);
781
782 /* hide cursor if we emulate it */
783 if (!hw_cursor)
784 ID3DPresent_SetCursor(This->swapchains[0]->present, NULL, NULL, FALSE);
785 This->cursor.software = !hw_cursor;
786
787 return D3D_OK;
788 }
789
790 void NINE_WINAPI
791 NineDevice9_SetCursorPosition( struct NineDevice9 *This,
792 int X,
793 int Y,
794 DWORD Flags )
795 {
796 struct NineSwapChain9 *swap = This->swapchains[0];
797
798 DBG("This=%p X=%d Y=%d Flags=%d\n", This, X, Y, Flags);
799
800 This->cursor.pos.x = X;
801 This->cursor.pos.y = Y;
802
803 if (!This->cursor.software)
804 This->cursor.software = ID3DPresent_SetCursorPos(swap->present, &This->cursor.pos) != D3D_OK;
805 }
806
807 BOOL NINE_WINAPI
808 NineDevice9_ShowCursor( struct NineDevice9 *This,
809 BOOL bShow )
810 {
811 BOOL old = This->cursor.visible;
812
813 DBG("This=%p bShow=%d\n", This, (int) bShow);
814
815 This->cursor.visible = bShow && (This->cursor.hotspot.x != -1);
816 if (!This->cursor.software)
817 This->cursor.software = ID3DPresent_SetCursor(This->swapchains[0]->present, NULL, NULL, bShow) != D3D_OK;
818
819 return old;
820 }
821
822 HRESULT NINE_WINAPI
823 NineDevice9_CreateAdditionalSwapChain( struct NineDevice9 *This,
824 D3DPRESENT_PARAMETERS *pPresentationParameters,
825 IDirect3DSwapChain9 **pSwapChain )
826 {
827 struct NineSwapChain9 *swapchain, *tmplt = This->swapchains[0];
828 ID3DPresent *present;
829 HRESULT hr;
830
831 DBG("This=%p pPresentationParameters=%p pSwapChain=%p\n",
832 This, pPresentationParameters, pSwapChain);
833
834 user_assert(pPresentationParameters, D3DERR_INVALIDCALL);
835 user_assert(tmplt->params.Windowed && pPresentationParameters->Windowed, D3DERR_INVALIDCALL);
836
837 /* TODO: this deserves more tests */
838 if (!pPresentationParameters->hDeviceWindow)
839 pPresentationParameters->hDeviceWindow = This->params.hFocusWindow;
840
841 hr = ID3DPresentGroup_CreateAdditionalPresent(This->present, pPresentationParameters, &present);
842
843 if (FAILED(hr))
844 return hr;
845
846 hr = NineSwapChain9_new(This, FALSE, present, pPresentationParameters,
847 tmplt->actx,
848 tmplt->params.hDeviceWindow,
849 &swapchain);
850 if (FAILED(hr))
851 return hr;
852
853 *pSwapChain = (IDirect3DSwapChain9 *)swapchain;
854 return D3D_OK;
855 }
856
857 HRESULT NINE_WINAPI
858 NineDevice9_GetSwapChain( struct NineDevice9 *This,
859 UINT iSwapChain,
860 IDirect3DSwapChain9 **pSwapChain )
861 {
862 user_assert(pSwapChain != NULL, D3DERR_INVALIDCALL);
863
864 *pSwapChain = NULL;
865 user_assert(iSwapChain < This->nswapchains, D3DERR_INVALIDCALL);
866
867 NineUnknown_AddRef(NineUnknown(This->swapchains[iSwapChain]));
868 *pSwapChain = (IDirect3DSwapChain9 *)This->swapchains[iSwapChain];
869
870 return D3D_OK;
871 }
872
873 UINT NINE_WINAPI
874 NineDevice9_GetNumberOfSwapChains( struct NineDevice9 *This )
875 {
876 return This->nswapchains;
877 }
878
879 HRESULT NINE_WINAPI
880 NineDevice9_Reset( struct NineDevice9 *This,
881 D3DPRESENT_PARAMETERS *pPresentationParameters )
882 {
883 HRESULT hr = D3D_OK;
884 unsigned i;
885
886 DBG("This=%p pPresentationParameters=%p\n", This, pPresentationParameters);
887
888 if (NineSwapChain9_GetOccluded(This->swapchains[0])) {
889 This->device_needs_reset = TRUE;
890 return D3DERR_DEVICELOST;
891 }
892
893 for (i = 0; i < This->nswapchains; ++i) {
894 D3DPRESENT_PARAMETERS *params = &pPresentationParameters[i];
895 hr = NineSwapChain9_Resize(This->swapchains[i], params, NULL);
896 if (hr != D3D_OK)
897 break;
898 }
899
900 nine_state_clear(&This->state, TRUE);
901 nine_context_clear(This);
902
903 NineDevice9_SetDefaultState(This, TRUE);
904 NineDevice9_SetRenderTarget(
905 This, 0, (IDirect3DSurface9 *)This->swapchains[0]->buffers[0]);
906 /* XXX: better use GetBackBuffer here ? */
907
908 This->device_needs_reset = (hr != D3D_OK);
909 return hr;
910 }
911
912 HRESULT NINE_WINAPI
913 NineDevice9_Present( struct NineDevice9 *This,
914 const RECT *pSourceRect,
915 const RECT *pDestRect,
916 HWND hDestWindowOverride,
917 const RGNDATA *pDirtyRegion )
918 {
919 unsigned i;
920 HRESULT hr;
921
922 DBG("This=%p pSourceRect=%p pDestRect=%p hDestWindowOverride=%p pDirtyRegion=%p\n",
923 This, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
924
925 /* XXX is this right? */
926 for (i = 0; i < This->nswapchains; ++i) {
927 hr = NineSwapChain9_Present(This->swapchains[i], pSourceRect, pDestRect,
928 hDestWindowOverride, pDirtyRegion, 0);
929 if (FAILED(hr)) { return hr; }
930 }
931
932 return D3D_OK;
933 }
934
935 HRESULT NINE_WINAPI
936 NineDevice9_GetBackBuffer( struct NineDevice9 *This,
937 UINT iSwapChain,
938 UINT iBackBuffer,
939 D3DBACKBUFFER_TYPE Type,
940 IDirect3DSurface9 **ppBackBuffer )
941 {
942 user_assert(ppBackBuffer != NULL, D3DERR_INVALIDCALL);
943 /* return NULL on error */
944 *ppBackBuffer = NULL;
945 user_assert(iSwapChain < This->nswapchains, D3DERR_INVALIDCALL);
946
947 return NineSwapChain9_GetBackBuffer(This->swapchains[iSwapChain],
948 iBackBuffer, Type, ppBackBuffer);
949 }
950
951 HRESULT NINE_WINAPI
952 NineDevice9_GetRasterStatus( struct NineDevice9 *This,
953 UINT iSwapChain,
954 D3DRASTER_STATUS *pRasterStatus )
955 {
956 user_assert(pRasterStatus != NULL, D3DERR_INVALIDCALL);
957 user_assert(iSwapChain < This->nswapchains, D3DERR_INVALIDCALL);
958
959 return NineSwapChain9_GetRasterStatus(This->swapchains[iSwapChain],
960 pRasterStatus);
961 }
962
963 HRESULT NINE_WINAPI
964 NineDevice9_SetDialogBoxMode( struct NineDevice9 *This,
965 BOOL bEnableDialogs )
966 {
967 STUB(D3DERR_INVALIDCALL);
968 }
969
970 void NINE_WINAPI
971 NineDevice9_SetGammaRamp( struct NineDevice9 *This,
972 UINT iSwapChain,
973 DWORD Flags,
974 const D3DGAMMARAMP *pRamp )
975 {
976 DBG("This=%p iSwapChain=%u Flags=%x pRamp=%p\n", This,
977 iSwapChain, Flags, pRamp);
978
979 user_warn(iSwapChain >= This->nswapchains);
980 user_warn(!pRamp);
981
982 if (pRamp && (iSwapChain < This->nswapchains)) {
983 struct NineSwapChain9 *swap = This->swapchains[iSwapChain];
984 swap->gamma = *pRamp;
985 ID3DPresent_SetGammaRamp(swap->present, pRamp, swap->params.hDeviceWindow);
986 }
987 }
988
989 void NINE_WINAPI
990 NineDevice9_GetGammaRamp( struct NineDevice9 *This,
991 UINT iSwapChain,
992 D3DGAMMARAMP *pRamp )
993 {
994 DBG("This=%p iSwapChain=%u pRamp=%p\n", This, iSwapChain, pRamp);
995
996 user_warn(iSwapChain >= This->nswapchains);
997 user_warn(!pRamp);
998
999 if (pRamp && (iSwapChain < This->nswapchains))
1000 *pRamp = This->swapchains[iSwapChain]->gamma;
1001 }
1002
1003 HRESULT NINE_WINAPI
1004 NineDevice9_CreateTexture( struct NineDevice9 *This,
1005 UINT Width,
1006 UINT Height,
1007 UINT Levels,
1008 DWORD Usage,
1009 D3DFORMAT Format,
1010 D3DPOOL Pool,
1011 IDirect3DTexture9 **ppTexture,
1012 HANDLE *pSharedHandle )
1013 {
1014 struct NineTexture9 *tex;
1015 HRESULT hr;
1016
1017 DBG("This=%p Width=%u Height=%u Levels=%u Usage=%s Format=%s Pool=%s "
1018 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Levels,
1019 nine_D3DUSAGE_to_str(Usage), d3dformat_to_string(Format),
1020 nine_D3DPOOL_to_str(Pool), ppTexture, pSharedHandle);
1021
1022 Usage &= D3DUSAGE_AUTOGENMIPMAP | D3DUSAGE_DEPTHSTENCIL | D3DUSAGE_DMAP |
1023 D3DUSAGE_DYNAMIC | D3DUSAGE_NONSECURE | D3DUSAGE_RENDERTARGET |
1024 D3DUSAGE_SOFTWAREPROCESSING | D3DUSAGE_TEXTAPI;
1025
1026 *ppTexture = NULL;
1027
1028 hr = NineTexture9_new(This, Width, Height, Levels, Usage, Format, Pool,
1029 &tex, pSharedHandle);
1030 if (SUCCEEDED(hr))
1031 *ppTexture = (IDirect3DTexture9 *)tex;
1032
1033 return hr;
1034 }
1035
1036 HRESULT NINE_WINAPI
1037 NineDevice9_CreateVolumeTexture( struct NineDevice9 *This,
1038 UINT Width,
1039 UINT Height,
1040 UINT Depth,
1041 UINT Levels,
1042 DWORD Usage,
1043 D3DFORMAT Format,
1044 D3DPOOL Pool,
1045 IDirect3DVolumeTexture9 **ppVolumeTexture,
1046 HANDLE *pSharedHandle )
1047 {
1048 struct NineVolumeTexture9 *tex;
1049 HRESULT hr;
1050
1051 DBG("This=%p Width=%u Height=%u Depth=%u Levels=%u Usage=%s Format=%s Pool=%s "
1052 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Depth, Levels,
1053 nine_D3DUSAGE_to_str(Usage), d3dformat_to_string(Format),
1054 nine_D3DPOOL_to_str(Pool), ppVolumeTexture, pSharedHandle);
1055
1056 Usage &= D3DUSAGE_DYNAMIC | D3DUSAGE_NONSECURE |
1057 D3DUSAGE_SOFTWAREPROCESSING;
1058
1059 *ppVolumeTexture = NULL;
1060
1061 hr = NineVolumeTexture9_new(This, Width, Height, Depth, Levels,
1062 Usage, Format, Pool, &tex, pSharedHandle);
1063 if (SUCCEEDED(hr))
1064 *ppVolumeTexture = (IDirect3DVolumeTexture9 *)tex;
1065
1066 return hr;
1067 }
1068
1069 HRESULT NINE_WINAPI
1070 NineDevice9_CreateCubeTexture( struct NineDevice9 *This,
1071 UINT EdgeLength,
1072 UINT Levels,
1073 DWORD Usage,
1074 D3DFORMAT Format,
1075 D3DPOOL Pool,
1076 IDirect3DCubeTexture9 **ppCubeTexture,
1077 HANDLE *pSharedHandle )
1078 {
1079 struct NineCubeTexture9 *tex;
1080 HRESULT hr;
1081
1082 DBG("This=%p EdgeLength=%u Levels=%u Usage=%s Format=%s Pool=%s ppOut=%p "
1083 "pSharedHandle=%p\n", This, EdgeLength, Levels,
1084 nine_D3DUSAGE_to_str(Usage), d3dformat_to_string(Format),
1085 nine_D3DPOOL_to_str(Pool), ppCubeTexture, pSharedHandle);
1086
1087 Usage &= D3DUSAGE_AUTOGENMIPMAP | D3DUSAGE_DEPTHSTENCIL | D3DUSAGE_DYNAMIC |
1088 D3DUSAGE_NONSECURE | D3DUSAGE_RENDERTARGET |
1089 D3DUSAGE_SOFTWAREPROCESSING;
1090
1091 *ppCubeTexture = NULL;
1092
1093 hr = NineCubeTexture9_new(This, EdgeLength, Levels, Usage, Format, Pool,
1094 &tex, pSharedHandle);
1095 if (SUCCEEDED(hr))
1096 *ppCubeTexture = (IDirect3DCubeTexture9 *)tex;
1097
1098 return hr;
1099 }
1100
1101 HRESULT NINE_WINAPI
1102 NineDevice9_CreateVertexBuffer( struct NineDevice9 *This,
1103 UINT Length,
1104 DWORD Usage,
1105 DWORD FVF,
1106 D3DPOOL Pool,
1107 IDirect3DVertexBuffer9 **ppVertexBuffer,
1108 HANDLE *pSharedHandle )
1109 {
1110 struct NineVertexBuffer9 *buf;
1111 HRESULT hr;
1112 D3DVERTEXBUFFER_DESC desc;
1113
1114 DBG("This=%p Length=%u Usage=%x FVF=%x Pool=%u ppOut=%p pSharedHandle=%p\n",
1115 This, Length, Usage, FVF, Pool, ppVertexBuffer, pSharedHandle);
1116
1117 user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_NOTAVAILABLE);
1118
1119 desc.Format = D3DFMT_VERTEXDATA;
1120 desc.Type = D3DRTYPE_VERTEXBUFFER;
1121 desc.Usage = Usage &
1122 (D3DUSAGE_DONOTCLIP | D3DUSAGE_DYNAMIC | D3DUSAGE_NONSECURE |
1123 D3DUSAGE_NPATCHES | D3DUSAGE_POINTS | D3DUSAGE_RTPATCHES |
1124 D3DUSAGE_SOFTWAREPROCESSING | D3DUSAGE_TEXTAPI |
1125 D3DUSAGE_WRITEONLY);
1126 desc.Pool = Pool;
1127 desc.Size = Length;
1128 desc.FVF = FVF;
1129
1130 user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1131 user_assert(desc.Usage == Usage, D3DERR_INVALIDCALL);
1132
1133 hr = NineVertexBuffer9_new(This, &desc, &buf);
1134 if (SUCCEEDED(hr))
1135 *ppVertexBuffer = (IDirect3DVertexBuffer9 *)buf;
1136 return hr;
1137 }
1138
1139 HRESULT NINE_WINAPI
1140 NineDevice9_CreateIndexBuffer( struct NineDevice9 *This,
1141 UINT Length,
1142 DWORD Usage,
1143 D3DFORMAT Format,
1144 D3DPOOL Pool,
1145 IDirect3DIndexBuffer9 **ppIndexBuffer,
1146 HANDLE *pSharedHandle )
1147 {
1148 struct NineIndexBuffer9 *buf;
1149 HRESULT hr;
1150 D3DINDEXBUFFER_DESC desc;
1151
1152 DBG("This=%p Length=%u Usage=%x Format=%s Pool=%u ppOut=%p "
1153 "pSharedHandle=%p\n", This, Length, Usage,
1154 d3dformat_to_string(Format), Pool, ppIndexBuffer, pSharedHandle);
1155
1156 user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_NOTAVAILABLE);
1157
1158 desc.Format = Format;
1159 desc.Type = D3DRTYPE_INDEXBUFFER;
1160 desc.Usage = Usage &
1161 (D3DUSAGE_DONOTCLIP | D3DUSAGE_DYNAMIC | D3DUSAGE_NONSECURE |
1162 D3DUSAGE_NPATCHES | D3DUSAGE_POINTS | D3DUSAGE_RTPATCHES |
1163 D3DUSAGE_SOFTWAREPROCESSING | D3DUSAGE_WRITEONLY);
1164 desc.Pool = Pool;
1165 desc.Size = Length;
1166
1167 user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1168 user_assert(desc.Usage == Usage, D3DERR_INVALIDCALL);
1169
1170 hr = NineIndexBuffer9_new(This, &desc, &buf);
1171 if (SUCCEEDED(hr))
1172 *ppIndexBuffer = (IDirect3DIndexBuffer9 *)buf;
1173 return hr;
1174 }
1175
1176 static HRESULT
1177 create_zs_or_rt_surface(struct NineDevice9 *This,
1178 unsigned type, /* 0 = RT, 1 = ZS, 2 = plain */
1179 D3DPOOL Pool,
1180 UINT Width, UINT Height,
1181 D3DFORMAT Format,
1182 D3DMULTISAMPLE_TYPE MultiSample,
1183 DWORD MultisampleQuality,
1184 BOOL Discard_or_Lockable,
1185 IDirect3DSurface9 **ppSurface,
1186 HANDLE *pSharedHandle)
1187 {
1188 struct NineSurface9 *surface;
1189 HRESULT hr;
1190 D3DSURFACE_DESC desc;
1191
1192 DBG("This=%p type=%u Pool=%s Width=%u Height=%u Format=%s MS=%u Quality=%u "
1193 "Discard_or_Lockable=%i ppSurface=%p pSharedHandle=%p\n",
1194 This, type, nine_D3DPOOL_to_str(Pool), Width, Height,
1195 d3dformat_to_string(Format), MultiSample, MultisampleQuality,
1196 Discard_or_Lockable, ppSurface, pSharedHandle);
1197
1198 if (pSharedHandle)
1199 DBG("FIXME Used shared handle! This option isn't probably handled correctly!\n");
1200
1201 user_assert(Width && Height, D3DERR_INVALIDCALL);
1202 user_assert(Pool != D3DPOOL_MANAGED, D3DERR_INVALIDCALL);
1203
1204 desc.Format = Format;
1205 desc.Type = D3DRTYPE_SURFACE;
1206 desc.Usage = 0;
1207 desc.Pool = Pool;
1208 desc.MultiSampleType = MultiSample;
1209 desc.MultiSampleQuality = MultisampleQuality;
1210 desc.Width = Width;
1211 desc.Height = Height;
1212 switch (type) {
1213 case 0: desc.Usage = D3DUSAGE_RENDERTARGET; break;
1214 case 1: desc.Usage = D3DUSAGE_DEPTHSTENCIL; break;
1215 default: assert(type == 2); break;
1216 }
1217
1218 hr = NineSurface9_new(This, NULL, NULL, NULL, 0, 0, 0, &desc, &surface);
1219 if (SUCCEEDED(hr)) {
1220 *ppSurface = (IDirect3DSurface9 *)surface;
1221
1222 if (surface->base.resource && Discard_or_Lockable && (type != 1))
1223 surface->base.resource->flags |= NINE_RESOURCE_FLAG_LOCKABLE;
1224 }
1225
1226 return hr;
1227 }
1228
1229 HRESULT NINE_WINAPI
1230 NineDevice9_CreateRenderTarget( struct NineDevice9 *This,
1231 UINT Width,
1232 UINT Height,
1233 D3DFORMAT Format,
1234 D3DMULTISAMPLE_TYPE MultiSample,
1235 DWORD MultisampleQuality,
1236 BOOL Lockable,
1237 IDirect3DSurface9 **ppSurface,
1238 HANDLE *pSharedHandle )
1239 {
1240 *ppSurface = NULL;
1241 return create_zs_or_rt_surface(This, 0, D3DPOOL_DEFAULT,
1242 Width, Height, Format,
1243 MultiSample, MultisampleQuality,
1244 Lockable, ppSurface, pSharedHandle);
1245 }
1246
1247 HRESULT NINE_WINAPI
1248 NineDevice9_CreateDepthStencilSurface( struct NineDevice9 *This,
1249 UINT Width,
1250 UINT Height,
1251 D3DFORMAT Format,
1252 D3DMULTISAMPLE_TYPE MultiSample,
1253 DWORD MultisampleQuality,
1254 BOOL Discard,
1255 IDirect3DSurface9 **ppSurface,
1256 HANDLE *pSharedHandle )
1257 {
1258 *ppSurface = NULL;
1259 if (!depth_stencil_format(Format))
1260 return D3DERR_NOTAVAILABLE;
1261 return create_zs_or_rt_surface(This, 1, D3DPOOL_DEFAULT,
1262 Width, Height, Format,
1263 MultiSample, MultisampleQuality,
1264 Discard, ppSurface, pSharedHandle);
1265 }
1266
1267 HRESULT NINE_WINAPI
1268 NineDevice9_UpdateSurface( struct NineDevice9 *This,
1269 IDirect3DSurface9 *pSourceSurface,
1270 const RECT *pSourceRect,
1271 IDirect3DSurface9 *pDestinationSurface,
1272 const POINT *pDestPoint )
1273 {
1274 struct NineSurface9 *dst = NineSurface9(pDestinationSurface);
1275 struct NineSurface9 *src = NineSurface9(pSourceSurface);
1276 int copy_width, copy_height;
1277 RECT destRect;
1278
1279 DBG("This=%p pSourceSurface=%p pDestinationSurface=%p "
1280 "pSourceRect=%p pDestPoint=%p\n", This,
1281 pSourceSurface, pDestinationSurface, pSourceRect, pDestPoint);
1282 if (pSourceRect)
1283 DBG("pSourceRect = (%u,%u)-(%u,%u)\n",
1284 pSourceRect->left, pSourceRect->top,
1285 pSourceRect->right, pSourceRect->bottom);
1286 if (pDestPoint)
1287 DBG("pDestPoint = (%u,%u)\n", pDestPoint->x, pDestPoint->y);
1288
1289 user_assert(dst && src, D3DERR_INVALIDCALL);
1290
1291 user_assert(dst->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1292 user_assert(src->base.pool == D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL);
1293
1294 user_assert(dst->desc.MultiSampleType == D3DMULTISAMPLE_NONE, D3DERR_INVALIDCALL);
1295 user_assert(src->desc.MultiSampleType == D3DMULTISAMPLE_NONE, D3DERR_INVALIDCALL);
1296
1297 user_assert(!src->lock_count, D3DERR_INVALIDCALL);
1298 user_assert(!dst->lock_count, D3DERR_INVALIDCALL);
1299
1300 user_assert(dst->desc.Format == src->desc.Format, D3DERR_INVALIDCALL);
1301 user_assert(!depth_stencil_format(dst->desc.Format), D3DERR_INVALIDCALL);
1302
1303 if (pSourceRect) {
1304 copy_width = pSourceRect->right - pSourceRect->left;
1305 copy_height = pSourceRect->bottom - pSourceRect->top;
1306
1307 user_assert(pSourceRect->left >= 0 &&
1308 copy_width > 0 &&
1309 pSourceRect->right <= src->desc.Width &&
1310 pSourceRect->top >= 0 &&
1311 copy_height > 0 &&
1312 pSourceRect->bottom <= src->desc.Height,
1313 D3DERR_INVALIDCALL);
1314 } else {
1315 copy_width = src->desc.Width;
1316 copy_height = src->desc.Height;
1317 }
1318
1319 destRect.right = copy_width;
1320 destRect.bottom = copy_height;
1321
1322 if (pDestPoint) {
1323 user_assert(pDestPoint->x >= 0 && pDestPoint->y >= 0,
1324 D3DERR_INVALIDCALL);
1325 destRect.right += pDestPoint->x;
1326 destRect.bottom += pDestPoint->y;
1327 }
1328
1329 user_assert(destRect.right <= dst->desc.Width &&
1330 destRect.bottom <= dst->desc.Height,
1331 D3DERR_INVALIDCALL);
1332
1333 if (compressed_format(dst->desc.Format)) {
1334 const unsigned w = util_format_get_blockwidth(dst->base.info.format);
1335 const unsigned h = util_format_get_blockheight(dst->base.info.format);
1336
1337 if (pDestPoint) {
1338 user_assert(!(pDestPoint->x % w) && !(pDestPoint->y % h),
1339 D3DERR_INVALIDCALL);
1340 }
1341
1342 if (pSourceRect) {
1343 user_assert(!(pSourceRect->left % w) && !(pSourceRect->top % h),
1344 D3DERR_INVALIDCALL);
1345 }
1346 if (!(copy_width == src->desc.Width &&
1347 copy_width == dst->desc.Width &&
1348 copy_height == src->desc.Height &&
1349 copy_height == dst->desc.Height)) {
1350 user_assert(!(copy_width % w) && !(copy_height % h),
1351 D3DERR_INVALIDCALL);
1352 }
1353 }
1354
1355 NineSurface9_CopyMemToDefault(dst, src, pDestPoint, pSourceRect);
1356
1357 return D3D_OK;
1358 }
1359
1360 HRESULT NINE_WINAPI
1361 NineDevice9_UpdateTexture( struct NineDevice9 *This,
1362 IDirect3DBaseTexture9 *pSourceTexture,
1363 IDirect3DBaseTexture9 *pDestinationTexture )
1364 {
1365 struct NineBaseTexture9 *dstb = NineBaseTexture9(pDestinationTexture);
1366 struct NineBaseTexture9 *srcb = NineBaseTexture9(pSourceTexture);
1367 unsigned l, m;
1368 unsigned last_src_level, last_dst_level;
1369 RECT rect;
1370
1371 DBG("This=%p pSourceTexture=%p pDestinationTexture=%p\n", This,
1372 pSourceTexture, pDestinationTexture);
1373
1374 user_assert(pSourceTexture && pDestinationTexture, D3DERR_INVALIDCALL);
1375 user_assert(pSourceTexture != pDestinationTexture, D3DERR_INVALIDCALL);
1376
1377 user_assert(dstb->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1378 user_assert(srcb->base.pool == D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL);
1379 user_assert(dstb->base.type == srcb->base.type, D3DERR_INVALIDCALL);
1380 user_assert(!(srcb->base.usage & D3DUSAGE_AUTOGENMIPMAP) ||
1381 dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP, D3DERR_INVALIDCALL);
1382
1383 /* Spec: Failure if
1384 * . Different formats
1385 * . Fewer src levels than dst levels (if the opposite, only matching levels
1386 * are supposed to be copied)
1387 * . Levels do not match
1388 * DDI: Actually the above should pass because of legacy applications
1389 * Do what you want about these, but you shouldn't crash.
1390 * However driver can expect that the top dimension is greater for src than dst.
1391 * Wine tests: Every combination that passes the initial checks should pass.
1392 * . Different formats => conversion driver and format dependent.
1393 * . 1 level, but size not matching => copy is done (and even crash if src bigger
1394 * than dst. For the case where dst bigger, wine doesn't test if a stretch is applied
1395 * or if a subrect is copied).
1396 * . 8x8 4 sublevels -> 7x7 2 sublevels => driver dependent, On NV seems to be 4x4 subrect
1397 * copied to 7x7.
1398 *
1399 * From these, the proposal is:
1400 * . Different formats -> use util_format_translate to translate if possible for surfaces.
1401 * Accept ARGB/XRGB for Volumes. Do nothing for the other combinations
1402 * . First level copied -> the first level such that src is smaller or equal to dst first level
1403 * . number of levels copied -> as long as it fits and textures have levels
1404 * That should satisfy the constraints (and instead of crashing for some cases we return D3D_OK)
1405 */
1406
1407 last_src_level = (srcb->base.usage & D3DUSAGE_AUTOGENMIPMAP) ? 0 : srcb->base.info.last_level;
1408 last_dst_level = (dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP) ? 0 : dstb->base.info.last_level;
1409
1410 for (m = 0; m <= last_src_level; ++m) {
1411 unsigned w = u_minify(srcb->base.info.width0, m);
1412 unsigned h = u_minify(srcb->base.info.height0, m);
1413 unsigned d = u_minify(srcb->base.info.depth0, m);
1414
1415 if (w <= dstb->base.info.width0 &&
1416 h <= dstb->base.info.height0 &&
1417 d <= dstb->base.info.depth0)
1418 break;
1419 }
1420 user_assert(m <= last_src_level, D3D_OK);
1421
1422 last_dst_level = MIN2(srcb->base.info.last_level - m, last_dst_level);
1423
1424 if (dstb->base.type == D3DRTYPE_TEXTURE) {
1425 struct NineTexture9 *dst = NineTexture9(dstb);
1426 struct NineTexture9 *src = NineTexture9(srcb);
1427
1428 if (src->dirty_rect.width == 0)
1429 return D3D_OK;
1430
1431 pipe_box_to_rect(&rect, &src->dirty_rect);
1432 for (l = 0; l < m; ++l)
1433 rect_minify_inclusive(&rect);
1434
1435 for (l = 0; l <= last_dst_level; ++l, ++m) {
1436 fit_rect_format_inclusive(dst->base.base.info.format,
1437 &rect,
1438 dst->surfaces[l]->desc.Width,
1439 dst->surfaces[l]->desc.Height);
1440 NineSurface9_CopyMemToDefault(dst->surfaces[l],
1441 src->surfaces[m],
1442 (POINT *)&rect,
1443 &rect);
1444 rect_minify_inclusive(&rect);
1445 }
1446 u_box_origin_2d(0, 0, &src->dirty_rect);
1447 } else
1448 if (dstb->base.type == D3DRTYPE_CUBETEXTURE) {
1449 struct NineCubeTexture9 *dst = NineCubeTexture9(dstb);
1450 struct NineCubeTexture9 *src = NineCubeTexture9(srcb);
1451 unsigned z;
1452
1453 /* GPUs usually have them stored as arrays of mip-mapped 2D textures. */
1454 for (z = 0; z < 6; ++z) {
1455 if (src->dirty_rect[z].width == 0)
1456 continue;
1457
1458 pipe_box_to_rect(&rect, &src->dirty_rect[z]);
1459 for (l = 0; l < m; ++l)
1460 rect_minify_inclusive(&rect);
1461
1462 for (l = 0; l <= last_dst_level; ++l, ++m) {
1463 fit_rect_format_inclusive(dst->base.base.info.format,
1464 &rect,
1465 dst->surfaces[l * 6 + z]->desc.Width,
1466 dst->surfaces[l * 6 + z]->desc.Height);
1467 NineSurface9_CopyMemToDefault(dst->surfaces[l * 6 + z],
1468 src->surfaces[m * 6 + z],
1469 (POINT *)&rect,
1470 &rect);
1471 rect_minify_inclusive(&rect);
1472 }
1473 u_box_origin_2d(0, 0, &src->dirty_rect[z]);
1474 m -= l;
1475 }
1476 } else
1477 if (dstb->base.type == D3DRTYPE_VOLUMETEXTURE) {
1478 struct NineVolumeTexture9 *dst = NineVolumeTexture9(dstb);
1479 struct NineVolumeTexture9 *src = NineVolumeTexture9(srcb);
1480
1481 if (src->dirty_box.width == 0)
1482 return D3D_OK;
1483 for (l = 0; l <= last_dst_level; ++l, ++m)
1484 NineVolume9_CopyMemToDefault(dst->volumes[l],
1485 src->volumes[m], 0, 0, 0, NULL);
1486 u_box_3d(0, 0, 0, 0, 0, 0, &src->dirty_box);
1487 } else{
1488 assert(!"invalid texture type");
1489 }
1490
1491 if (dstb->base.usage & D3DUSAGE_AUTOGENMIPMAP) {
1492 dstb->dirty_mip = TRUE;
1493 NineBaseTexture9_GenerateMipSubLevels(dstb);
1494 }
1495
1496 return D3D_OK;
1497 }
1498
1499 HRESULT NINE_WINAPI
1500 NineDevice9_GetRenderTargetData( struct NineDevice9 *This,
1501 IDirect3DSurface9 *pRenderTarget,
1502 IDirect3DSurface9 *pDestSurface )
1503 {
1504 struct NineSurface9 *dst = NineSurface9(pDestSurface);
1505 struct NineSurface9 *src = NineSurface9(pRenderTarget);
1506
1507 DBG("This=%p pRenderTarget=%p pDestSurface=%p\n",
1508 This, pRenderTarget, pDestSurface);
1509
1510 user_assert(pRenderTarget && pDestSurface, D3DERR_INVALIDCALL);
1511
1512 user_assert(dst->desc.Pool == D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL);
1513 user_assert(src->desc.Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1514
1515 user_assert(dst->desc.MultiSampleType < 2, D3DERR_INVALIDCALL);
1516 user_assert(src->desc.MultiSampleType < 2, D3DERR_INVALIDCALL);
1517
1518 user_assert(src->desc.Width == dst->desc.Width, D3DERR_INVALIDCALL);
1519 user_assert(src->desc.Height == dst->desc.Height, D3DERR_INVALIDCALL);
1520
1521 user_assert(src->desc.Format != D3DFMT_NULL, D3DERR_INVALIDCALL);
1522
1523 NineSurface9_CopyDefaultToMem(dst, src);
1524
1525 return D3D_OK;
1526 }
1527
1528 HRESULT NINE_WINAPI
1529 NineDevice9_GetFrontBufferData( struct NineDevice9 *This,
1530 UINT iSwapChain,
1531 IDirect3DSurface9 *pDestSurface )
1532 {
1533 DBG("This=%p iSwapChain=%u pDestSurface=%p\n", This,
1534 iSwapChain, pDestSurface);
1535
1536 user_assert(pDestSurface != NULL, D3DERR_INVALIDCALL);
1537 user_assert(iSwapChain < This->nswapchains, D3DERR_INVALIDCALL);
1538
1539 return NineSwapChain9_GetFrontBufferData(This->swapchains[iSwapChain],
1540 pDestSurface);
1541 }
1542
1543 HRESULT NINE_WINAPI
1544 NineDevice9_StretchRect( struct NineDevice9 *This,
1545 IDirect3DSurface9 *pSourceSurface,
1546 const RECT *pSourceRect,
1547 IDirect3DSurface9 *pDestSurface,
1548 const RECT *pDestRect,
1549 D3DTEXTUREFILTERTYPE Filter )
1550 {
1551 struct pipe_screen *screen = This->screen;
1552 struct NineSurface9 *dst = NineSurface9(pDestSurface);
1553 struct NineSurface9 *src = NineSurface9(pSourceSurface);
1554 struct pipe_resource *dst_res = NineSurface9_GetResource(dst);
1555 struct pipe_resource *src_res = NineSurface9_GetResource(src);
1556 boolean zs;
1557 struct pipe_blit_info blit;
1558 boolean scaled, clamped, ms, flip_x = FALSE, flip_y = FALSE;
1559
1560 DBG("This=%p pSourceSurface=%p pSourceRect=%p pDestSurface=%p "
1561 "pDestRect=%p Filter=%u\n",
1562 This, pSourceSurface, pSourceRect, pDestSurface, pDestRect, Filter);
1563 if (pSourceRect)
1564 DBG("pSourceRect=(%u,%u)-(%u,%u)\n",
1565 pSourceRect->left, pSourceRect->top,
1566 pSourceRect->right, pSourceRect->bottom);
1567 if (pDestRect)
1568 DBG("pDestRect=(%u,%u)-(%u,%u)\n", pDestRect->left, pDestRect->top,
1569 pDestRect->right, pDestRect->bottom);
1570
1571 user_assert(dst->base.pool == D3DPOOL_DEFAULT &&
1572 src->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1573 zs = util_format_is_depth_or_stencil(dst_res->format);
1574 user_assert(!zs || !This->in_scene, D3DERR_INVALIDCALL);
1575 user_assert(!zs || !pSourceRect ||
1576 (pSourceRect->left == 0 &&
1577 pSourceRect->top == 0 &&
1578 pSourceRect->right == src->desc.Width &&
1579 pSourceRect->bottom == src->desc.Height), D3DERR_INVALIDCALL);
1580 user_assert(!zs || !pDestRect ||
1581 (pDestRect->left == 0 &&
1582 pDestRect->top == 0 &&
1583 pDestRect->right == dst->desc.Width &&
1584 pDestRect->bottom == dst->desc.Height), D3DERR_INVALIDCALL);
1585 user_assert(!zs ||
1586 (dst->desc.Width == src->desc.Width &&
1587 dst->desc.Height == src->desc.Height), D3DERR_INVALIDCALL);
1588 user_assert(zs || !util_format_is_depth_or_stencil(src_res->format),
1589 D3DERR_INVALIDCALL);
1590 user_assert(!zs || dst->desc.Format == src->desc.Format,
1591 D3DERR_INVALIDCALL);
1592 user_assert(screen->is_format_supported(screen, src_res->format,
1593 src_res->target,
1594 src_res->nr_samples,
1595 PIPE_BIND_SAMPLER_VIEW),
1596 D3DERR_INVALIDCALL);
1597
1598 /* We might want to permit these, but wine thinks we shouldn't. */
1599 user_assert(!pDestRect ||
1600 (pDestRect->left <= pDestRect->right &&
1601 pDestRect->top <= pDestRect->bottom), D3DERR_INVALIDCALL);
1602 user_assert(!pSourceRect ||
1603 (pSourceRect->left <= pSourceRect->right &&
1604 pSourceRect->top <= pSourceRect->bottom), D3DERR_INVALIDCALL);
1605
1606 memset(&blit, 0, sizeof(blit));
1607 blit.dst.resource = dst_res;
1608 blit.dst.level = dst->level;
1609 blit.dst.box.z = dst->layer;
1610 blit.dst.box.depth = 1;
1611 blit.dst.format = dst_res->format;
1612 if (pDestRect) {
1613 flip_x = pDestRect->left > pDestRect->right;
1614 if (flip_x) {
1615 blit.dst.box.x = pDestRect->right;
1616 blit.dst.box.width = pDestRect->left - pDestRect->right;
1617 } else {
1618 blit.dst.box.x = pDestRect->left;
1619 blit.dst.box.width = pDestRect->right - pDestRect->left;
1620 }
1621 flip_y = pDestRect->top > pDestRect->bottom;
1622 if (flip_y) {
1623 blit.dst.box.y = pDestRect->bottom;
1624 blit.dst.box.height = pDestRect->top - pDestRect->bottom;
1625 } else {
1626 blit.dst.box.y = pDestRect->top;
1627 blit.dst.box.height = pDestRect->bottom - pDestRect->top;
1628 }
1629 } else {
1630 blit.dst.box.x = 0;
1631 blit.dst.box.y = 0;
1632 blit.dst.box.width = dst->desc.Width;
1633 blit.dst.box.height = dst->desc.Height;
1634 }
1635 blit.src.resource = src_res;
1636 blit.src.level = src->level;
1637 blit.src.box.z = src->layer;
1638 blit.src.box.depth = 1;
1639 blit.src.format = src_res->format;
1640 if (pSourceRect) {
1641 if (flip_x ^ (pSourceRect->left > pSourceRect->right)) {
1642 blit.src.box.x = pSourceRect->right;
1643 blit.src.box.width = pSourceRect->left - pSourceRect->right;
1644 } else {
1645 blit.src.box.x = pSourceRect->left;
1646 blit.src.box.width = pSourceRect->right - pSourceRect->left;
1647 }
1648 if (flip_y ^ (pSourceRect->top > pSourceRect->bottom)) {
1649 blit.src.box.y = pSourceRect->bottom;
1650 blit.src.box.height = pSourceRect->top - pSourceRect->bottom;
1651 } else {
1652 blit.src.box.y = pSourceRect->top;
1653 blit.src.box.height = pSourceRect->bottom - pSourceRect->top;
1654 }
1655 } else {
1656 blit.src.box.x = flip_x ? src->desc.Width : 0;
1657 blit.src.box.y = flip_y ? src->desc.Height : 0;
1658 blit.src.box.width = flip_x ? -src->desc.Width : src->desc.Width;
1659 blit.src.box.height = flip_y ? -src->desc.Height : src->desc.Height;
1660 }
1661 blit.mask = zs ? PIPE_MASK_ZS : PIPE_MASK_RGBA;
1662 blit.filter = Filter == D3DTEXF_LINEAR ?
1663 PIPE_TEX_FILTER_LINEAR : PIPE_TEX_FILTER_NEAREST;
1664 blit.scissor_enable = FALSE;
1665 blit.alpha_blend = FALSE;
1666
1667 /* If both of a src and dst dimension are negative, flip them. */
1668 if (blit.dst.box.width < 0 && blit.src.box.width < 0) {
1669 blit.dst.box.width = -blit.dst.box.width;
1670 blit.src.box.width = -blit.src.box.width;
1671 }
1672 if (blit.dst.box.height < 0 && blit.src.box.height < 0) {
1673 blit.dst.box.height = -blit.dst.box.height;
1674 blit.src.box.height = -blit.src.box.height;
1675 }
1676 scaled =
1677 blit.dst.box.width != blit.src.box.width ||
1678 blit.dst.box.height != blit.src.box.height;
1679
1680 user_assert(!scaled || dst != src, D3DERR_INVALIDCALL);
1681 user_assert(!scaled ||
1682 !NineSurface9_IsOffscreenPlain(dst), D3DERR_INVALIDCALL);
1683 user_assert(!NineSurface9_IsOffscreenPlain(dst) ||
1684 NineSurface9_IsOffscreenPlain(src), D3DERR_INVALIDCALL);
1685 user_assert(NineSurface9_IsOffscreenPlain(dst) ||
1686 dst->desc.Usage & (D3DUSAGE_RENDERTARGET | D3DUSAGE_DEPTHSTENCIL),
1687 D3DERR_INVALIDCALL);
1688 user_assert(!scaled ||
1689 (!util_format_is_compressed(dst->base.info.format) &&
1690 !util_format_is_compressed(src->base.info.format)),
1691 D3DERR_INVALIDCALL);
1692
1693 user_warn(src == dst &&
1694 u_box_test_intersection_2d(&blit.src.box, &blit.dst.box));
1695
1696 /* Check for clipping/clamping: */
1697 {
1698 struct pipe_box box;
1699 int xy;
1700
1701 xy = u_box_clip_2d(&box, &blit.dst.box,
1702 dst->desc.Width, dst->desc.Height);
1703 if (xy < 0)
1704 return D3D_OK;
1705 if (xy == 0)
1706 xy = u_box_clip_2d(&box, &blit.src.box,
1707 src->desc.Width, src->desc.Height);
1708 clamped = !!xy;
1709 }
1710
1711 ms = (dst->desc.MultiSampleType != src->desc.MultiSampleType) ||
1712 (dst->desc.MultiSampleQuality != src->desc.MultiSampleQuality);
1713
1714 if (clamped || scaled || (blit.dst.format != blit.src.format) || ms) {
1715 DBG("using pipe->blit()\n");
1716 /* TODO: software scaling */
1717 user_assert(screen->is_format_supported(screen, dst_res->format,
1718 dst_res->target,
1719 dst_res->nr_samples,
1720 zs ? PIPE_BIND_DEPTH_STENCIL :
1721 PIPE_BIND_RENDER_TARGET),
1722 D3DERR_INVALIDCALL);
1723
1724 nine_context_blit(This, &blit);
1725 } else {
1726 assert(blit.dst.box.x >= 0 && blit.dst.box.y >= 0 &&
1727 blit.src.box.x >= 0 && blit.src.box.y >= 0 &&
1728 blit.dst.box.x + blit.dst.box.width <= dst->desc.Width &&
1729 blit.src.box.x + blit.src.box.width <= src->desc.Width &&
1730 blit.dst.box.y + blit.dst.box.height <= dst->desc.Height &&
1731 blit.src.box.y + blit.src.box.height <= src->desc.Height);
1732 /* Or drivers might crash ... */
1733 DBG("Using resource_copy_region.\n");
1734 nine_context_resource_copy_region(This,
1735 blit.dst.resource, blit.dst.level,
1736 &blit.dst.box,
1737 blit.src.resource, blit.src.level,
1738 &blit.src.box);
1739 }
1740
1741 /* Communicate the container it needs to update sublevels - if apply */
1742 NineSurface9_MarkContainerDirty(dst);
1743
1744 return D3D_OK;
1745 }
1746
1747 HRESULT NINE_WINAPI
1748 NineDevice9_ColorFill( struct NineDevice9 *This,
1749 IDirect3DSurface9 *pSurface,
1750 const RECT *pRect,
1751 D3DCOLOR color )
1752 {
1753 struct pipe_context *pipe = NineDevice9_GetPipe(This);
1754 struct NineSurface9 *surf = NineSurface9(pSurface);
1755 struct pipe_surface *psurf;
1756 unsigned x, y, w, h;
1757 union pipe_color_union rgba;
1758 boolean fallback;
1759
1760 DBG("This=%p pSurface=%p pRect=%p color=%08x\n", This,
1761 pSurface, pRect, color);
1762 if (pRect)
1763 DBG("pRect=(%u,%u)-(%u,%u)\n", pRect->left, pRect->top,
1764 pRect->right, pRect->bottom);
1765
1766 user_assert(surf->base.pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
1767
1768 user_assert((surf->base.usage & D3DUSAGE_RENDERTARGET) ||
1769 NineSurface9_IsOffscreenPlain(surf), D3DERR_INVALIDCALL);
1770
1771 user_assert(surf->desc.Format != D3DFMT_NULL, D3D_OK);
1772
1773 if (pRect) {
1774 x = pRect->left;
1775 y = pRect->top;
1776 w = pRect->right - pRect->left;
1777 h = pRect->bottom - pRect->top;
1778 /* Wine tests: */
1779 if (compressed_format(surf->desc.Format)) {
1780 const unsigned bw = util_format_get_blockwidth(surf->base.info.format);
1781 const unsigned bh = util_format_get_blockheight(surf->base.info.format);
1782
1783 user_assert(!(x % bw) && !(y % bh) && !(w % bw) && !(h % bh),
1784 D3DERR_INVALIDCALL);
1785 }
1786 } else{
1787 x = 0;
1788 y = 0;
1789 w = surf->desc.Width;
1790 h = surf->desc.Height;
1791 }
1792 d3dcolor_to_pipe_color_union(&rgba, color);
1793
1794 fallback = !(surf->base.info.bind & PIPE_BIND_RENDER_TARGET);
1795
1796 if (!fallback) {
1797 psurf = NineSurface9_GetSurface(surf, 0);
1798 if (!psurf)
1799 fallback = TRUE;
1800 }
1801
1802 if (!fallback) {
1803 pipe->clear_render_target(pipe, psurf, &rgba, x, y, w, h, false);
1804 } else {
1805 D3DLOCKED_RECT lock;
1806 union util_color uc;
1807 HRESULT hr;
1808 /* XXX: lock pRect and fix util_fill_rect */
1809 hr = NineSurface9_LockRect(surf, &lock, NULL, 0);
1810 if (FAILED(hr))
1811 return hr;
1812 util_pack_color_ub(color >> 16, color >> 8, color >> 0, color >> 24,
1813 surf->base.info.format, &uc);
1814 util_fill_rect(lock.pBits, surf->base.info.format,lock.Pitch,
1815 x, y, w, h, &uc);
1816 NineSurface9_UnlockRect(surf);
1817 }
1818
1819 return D3D_OK;
1820 }
1821
1822 HRESULT NINE_WINAPI
1823 NineDevice9_CreateOffscreenPlainSurface( struct NineDevice9 *This,
1824 UINT Width,
1825 UINT Height,
1826 D3DFORMAT Format,
1827 D3DPOOL Pool,
1828 IDirect3DSurface9 **ppSurface,
1829 HANDLE *pSharedHandle )
1830 {
1831 HRESULT hr;
1832
1833 DBG("This=%p Width=%u Height=%u Format=%s(0x%x) Pool=%u "
1834 "ppSurface=%p pSharedHandle=%p\n", This,
1835 Width, Height, d3dformat_to_string(Format), Format, Pool,
1836 ppSurface, pSharedHandle);
1837
1838 *ppSurface = NULL;
1839 user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT
1840 || Pool == D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL);
1841 user_assert(Pool != D3DPOOL_MANAGED, D3DERR_INVALIDCALL);
1842
1843 /* Can be used with StretchRect and ColorFill. It's also always lockable.
1844 */
1845 hr = create_zs_or_rt_surface(This, 2, Pool, Width, Height,
1846 Format,
1847 D3DMULTISAMPLE_NONE, 0,
1848 TRUE,
1849 ppSurface, pSharedHandle);
1850 if (FAILED(hr))
1851 DBG("Failed to create surface.\n");
1852 return hr;
1853 }
1854
1855 HRESULT NINE_WINAPI
1856 NineDevice9_SetRenderTarget( struct NineDevice9 *This,
1857 DWORD RenderTargetIndex,
1858 IDirect3DSurface9 *pRenderTarget )
1859 {
1860 struct NineSurface9 *rt = NineSurface9(pRenderTarget);
1861 const unsigned i = RenderTargetIndex;
1862
1863 DBG("This=%p RenderTargetIndex=%u pRenderTarget=%p\n", This,
1864 RenderTargetIndex, pRenderTarget);
1865
1866 user_assert(i < This->caps.NumSimultaneousRTs, D3DERR_INVALIDCALL);
1867 user_assert(i != 0 || pRenderTarget, D3DERR_INVALIDCALL);
1868 user_assert(!pRenderTarget ||
1869 rt->desc.Usage & D3DUSAGE_RENDERTARGET, D3DERR_INVALIDCALL);
1870
1871 if (i == 0) {
1872 This->state.viewport.X = 0;
1873 This->state.viewport.Y = 0;
1874 This->state.viewport.Width = rt->desc.Width;
1875 This->state.viewport.Height = rt->desc.Height;
1876 This->state.viewport.MinZ = 0.0f;
1877 This->state.viewport.MaxZ = 1.0f;
1878
1879 This->state.scissor.minx = 0;
1880 This->state.scissor.miny = 0;
1881 This->state.scissor.maxx = rt->desc.Width;
1882 This->state.scissor.maxy = rt->desc.Height;
1883 }
1884
1885 if (This->state.rt[i] != NineSurface9(pRenderTarget))
1886 nine_bind(&This->state.rt[i], pRenderTarget);
1887
1888 nine_context_set_render_target(This, i, rt);
1889 return D3D_OK;
1890 }
1891
1892 HRESULT NINE_WINAPI
1893 NineDevice9_GetRenderTarget( struct NineDevice9 *This,
1894 DWORD RenderTargetIndex,
1895 IDirect3DSurface9 **ppRenderTarget )
1896 {
1897 const unsigned i = RenderTargetIndex;
1898
1899 user_assert(i < This->caps.NumSimultaneousRTs, D3DERR_INVALIDCALL);
1900 user_assert(ppRenderTarget, D3DERR_INVALIDCALL);
1901
1902 *ppRenderTarget = (IDirect3DSurface9 *)This->state.rt[i];
1903 if (!This->state.rt[i])
1904 return D3DERR_NOTFOUND;
1905
1906 NineUnknown_AddRef(NineUnknown(This->state.rt[i]));
1907 return D3D_OK;
1908 }
1909
1910 HRESULT NINE_WINAPI
1911 NineDevice9_SetDepthStencilSurface( struct NineDevice9 *This,
1912 IDirect3DSurface9 *pNewZStencil )
1913 {
1914 struct NineSurface9 *ds = NineSurface9(pNewZStencil);
1915 DBG("This=%p pNewZStencil=%p\n", This, pNewZStencil);
1916
1917 if (This->state.ds != ds) {
1918 nine_bind(&This->state.ds, ds);
1919 nine_context_set_depth_stencil(This, ds);
1920 }
1921 return D3D_OK;
1922 }
1923
1924 HRESULT NINE_WINAPI
1925 NineDevice9_GetDepthStencilSurface( struct NineDevice9 *This,
1926 IDirect3DSurface9 **ppZStencilSurface )
1927 {
1928 user_assert(ppZStencilSurface, D3DERR_INVALIDCALL);
1929
1930 *ppZStencilSurface = (IDirect3DSurface9 *)This->state.ds;
1931 if (!This->state.ds)
1932 return D3DERR_NOTFOUND;
1933
1934 NineUnknown_AddRef(NineUnknown(This->state.ds));
1935 return D3D_OK;
1936 }
1937
1938 HRESULT NINE_WINAPI
1939 NineDevice9_BeginScene( struct NineDevice9 *This )
1940 {
1941 DBG("This=%p\n", This);
1942 user_assert(!This->in_scene, D3DERR_INVALIDCALL);
1943 This->in_scene = TRUE;
1944 /* Do we want to do anything else here ? */
1945 return D3D_OK;
1946 }
1947
1948 HRESULT NINE_WINAPI
1949 NineDevice9_EndScene( struct NineDevice9 *This )
1950 {
1951 DBG("This=%p\n", This);
1952 user_assert(This->in_scene, D3DERR_INVALIDCALL);
1953 This->in_scene = FALSE;
1954 return D3D_OK;
1955 }
1956
1957 HRESULT NINE_WINAPI
1958 NineDevice9_Clear( struct NineDevice9 *This,
1959 DWORD Count,
1960 const D3DRECT *pRects,
1961 DWORD Flags,
1962 D3DCOLOR Color,
1963 float Z,
1964 DWORD Stencil )
1965 {
1966 struct NineSurface9 *zsbuf_surf = This->state.ds;
1967
1968 DBG("This=%p Count=%u pRects=%p Flags=%x Color=%08x Z=%f Stencil=%x\n",
1969 This, Count, pRects, Flags, Color, Z, Stencil);
1970
1971 user_assert(This->state.ds || !(Flags & NINED3DCLEAR_DEPTHSTENCIL),
1972 D3DERR_INVALIDCALL);
1973 user_assert(!(Flags & D3DCLEAR_STENCIL) ||
1974 (zsbuf_surf &&
1975 util_format_is_depth_and_stencil(zsbuf_surf->base.info.format)),
1976 D3DERR_INVALIDCALL);
1977 #ifdef NINE_STRICT
1978 user_assert((Count && pRects) || (!Count && !pRects), D3DERR_INVALIDCALL);
1979 #else
1980 user_warn((pRects && !Count) || (!pRects && Count));
1981 if (pRects && !Count)
1982 return D3D_OK;
1983 if (!pRects)
1984 Count = 0;
1985 #endif
1986
1987 nine_context_clear_fb(This, Count, pRects, Flags, Color, Z, Stencil);
1988 return D3D_OK;
1989 }
1990
1991 HRESULT NINE_WINAPI
1992 NineDevice9_SetTransform( struct NineDevice9 *This,
1993 D3DTRANSFORMSTATETYPE State,
1994 const D3DMATRIX *pMatrix )
1995 {
1996 struct nine_state *state = This->update;
1997 D3DMATRIX *M = nine_state_access_transform(&state->ff, State, TRUE);
1998
1999 DBG("This=%p State=%d pMatrix=%p\n", This, State, pMatrix);
2000
2001 user_assert(M, D3DERR_INVALIDCALL);
2002
2003 *M = *pMatrix;
2004 if (unlikely(This->is_recording)) {
2005 state->ff.changed.transform[State / 32] |= 1 << (State % 32);
2006 state->changed.group |= NINE_STATE_FF;
2007 } else
2008 nine_context_set_transform(This, State, pMatrix);
2009
2010 return D3D_OK;
2011 }
2012
2013 HRESULT NINE_WINAPI
2014 NineDevice9_GetTransform( struct NineDevice9 *This,
2015 D3DTRANSFORMSTATETYPE State,
2016 D3DMATRIX *pMatrix )
2017 {
2018 D3DMATRIX *M = nine_state_access_transform(&This->state.ff, State, FALSE);
2019 user_assert(M, D3DERR_INVALIDCALL);
2020 *pMatrix = *M;
2021 return D3D_OK;
2022 }
2023
2024 HRESULT NINE_WINAPI
2025 NineDevice9_MultiplyTransform( struct NineDevice9 *This,
2026 D3DTRANSFORMSTATETYPE State,
2027 const D3DMATRIX *pMatrix )
2028 {
2029 struct nine_state *state = This->update;
2030 D3DMATRIX T;
2031 D3DMATRIX *M = nine_state_access_transform(&state->ff, State, TRUE);
2032
2033 DBG("This=%p State=%d pMatrix=%p\n", This, State, pMatrix);
2034
2035 user_assert(M, D3DERR_INVALIDCALL);
2036
2037 nine_d3d_matrix_matrix_mul(&T, pMatrix, M);
2038 return NineDevice9_SetTransform(This, State, &T);
2039 }
2040
2041 HRESULT NINE_WINAPI
2042 NineDevice9_SetViewport( struct NineDevice9 *This,
2043 const D3DVIEWPORT9 *pViewport )
2044 {
2045 struct nine_state *state = This->update;
2046
2047 DBG("X=%u Y=%u W=%u H=%u MinZ=%f MaxZ=%f\n",
2048 pViewport->X, pViewport->Y, pViewport->Width, pViewport->Height,
2049 pViewport->MinZ, pViewport->MaxZ);
2050
2051 state->viewport = *pViewport;
2052 nine_context_set_viewport(This, pViewport);
2053
2054 return D3D_OK;
2055 }
2056
2057 HRESULT NINE_WINAPI
2058 NineDevice9_GetViewport( struct NineDevice9 *This,
2059 D3DVIEWPORT9 *pViewport )
2060 {
2061 *pViewport = This->state.viewport;
2062 return D3D_OK;
2063 }
2064
2065 HRESULT NINE_WINAPI
2066 NineDevice9_SetMaterial( struct NineDevice9 *This,
2067 const D3DMATERIAL9 *pMaterial )
2068 {
2069 struct nine_state *state = This->update;
2070
2071 DBG("This=%p pMaterial=%p\n", This, pMaterial);
2072 if (pMaterial)
2073 nine_dump_D3DMATERIAL9(DBG_FF, pMaterial);
2074
2075 user_assert(pMaterial, E_POINTER);
2076
2077 state->ff.material = *pMaterial;
2078 if (unlikely(This->is_recording))
2079 state->changed.group |= NINE_STATE_FF_MATERIAL;
2080 else
2081 nine_context_set_material(This, pMaterial);
2082
2083 return D3D_OK;
2084 }
2085
2086 HRESULT NINE_WINAPI
2087 NineDevice9_GetMaterial( struct NineDevice9 *This,
2088 D3DMATERIAL9 *pMaterial )
2089 {
2090 user_assert(pMaterial, E_POINTER);
2091 *pMaterial = This->state.ff.material;
2092 return D3D_OK;
2093 }
2094
2095 HRESULT NINE_WINAPI
2096 NineDevice9_SetLight( struct NineDevice9 *This,
2097 DWORD Index,
2098 const D3DLIGHT9 *pLight )
2099 {
2100 struct nine_state *state = This->update;
2101 HRESULT hr;
2102
2103 DBG("This=%p Index=%u pLight=%p\n", This, Index, pLight);
2104 if (pLight)
2105 nine_dump_D3DLIGHT9(DBG_FF, pLight);
2106
2107 user_assert(pLight, D3DERR_INVALIDCALL);
2108 user_assert(pLight->Type < NINED3DLIGHT_INVALID, D3DERR_INVALIDCALL);
2109
2110 user_assert(Index < NINE_MAX_LIGHTS, D3DERR_INVALIDCALL); /* sanity */
2111
2112 hr = nine_state_set_light(&state->ff, Index, pLight);
2113 if (hr != D3D_OK)
2114 return hr;
2115
2116 if (pLight->Type != D3DLIGHT_DIRECTIONAL &&
2117 pLight->Attenuation0 == 0.0f &&
2118 pLight->Attenuation1 == 0.0f &&
2119 pLight->Attenuation2 == 0.0f) {
2120 DBG("Warning: all D3DLIGHT9.Attenuation[i] are 0\n");
2121 }
2122
2123 if (unlikely(This->is_recording))
2124 state->changed.group |= NINE_STATE_FF_LIGHTING;
2125 else
2126 nine_context_set_light(This, Index, pLight);
2127
2128 return D3D_OK;
2129 }
2130
2131 HRESULT NINE_WINAPI
2132 NineDevice9_GetLight( struct NineDevice9 *This,
2133 DWORD Index,
2134 D3DLIGHT9 *pLight )
2135 {
2136 const struct nine_state *state = &This->state;
2137
2138 user_assert(pLight, D3DERR_INVALIDCALL);
2139 user_assert(Index < state->ff.num_lights, D3DERR_INVALIDCALL);
2140 user_assert(state->ff.light[Index].Type < NINED3DLIGHT_INVALID,
2141 D3DERR_INVALIDCALL);
2142
2143 *pLight = state->ff.light[Index];
2144
2145 return D3D_OK;
2146 }
2147
2148 HRESULT NINE_WINAPI
2149 NineDevice9_LightEnable( struct NineDevice9 *This,
2150 DWORD Index,
2151 BOOL Enable )
2152 {
2153 struct nine_state *state = This->update;
2154
2155 DBG("This=%p Index=%u Enable=%i\n", This, Index, Enable);
2156
2157 if (Index >= state->ff.num_lights ||
2158 state->ff.light[Index].Type == NINED3DLIGHT_INVALID) {
2159 /* This should create a default light. */
2160 D3DLIGHT9 light;
2161 memset(&light, 0, sizeof(light));
2162 light.Type = D3DLIGHT_DIRECTIONAL;
2163 light.Diffuse.r = 1.0f;
2164 light.Diffuse.g = 1.0f;
2165 light.Diffuse.b = 1.0f;
2166 light.Direction.z = 1.0f;
2167 NineDevice9_SetLight(This, Index, &light);
2168 }
2169
2170 nine_state_light_enable(&state->ff, &state->changed.group, Index, Enable);
2171 if (likely(!This->is_recording))
2172 nine_context_light_enable(This, Index, Enable);
2173
2174 return D3D_OK;
2175 }
2176
2177 HRESULT NINE_WINAPI
2178 NineDevice9_GetLightEnable( struct NineDevice9 *This,
2179 DWORD Index,
2180 BOOL *pEnable )
2181 {
2182 const struct nine_state *state = &This->state;
2183 unsigned i;
2184
2185 user_assert(Index < state->ff.num_lights, D3DERR_INVALIDCALL);
2186 user_assert(state->ff.light[Index].Type < NINED3DLIGHT_INVALID,
2187 D3DERR_INVALIDCALL);
2188
2189 for (i = 0; i < state->ff.num_lights_active; ++i)
2190 if (state->ff.active_light[i] == Index)
2191 break;
2192
2193 *pEnable = i != state->ff.num_lights_active ? 128 : 0; // Taken from wine
2194
2195 return D3D_OK;
2196 }
2197
2198 HRESULT NINE_WINAPI
2199 NineDevice9_SetClipPlane( struct NineDevice9 *This,
2200 DWORD Index,
2201 const float *pPlane )
2202 {
2203 struct nine_state *state = This->update;
2204
2205 user_assert(pPlane, D3DERR_INVALIDCALL);
2206
2207 DBG("This=%p Index=%u pPlane=%f %f %f %f\n", This, Index,
2208 pPlane[0], pPlane[1],
2209 pPlane[2], pPlane[3]);
2210
2211 user_assert(Index < PIPE_MAX_CLIP_PLANES, D3DERR_INVALIDCALL);
2212
2213 memcpy(&state->clip.ucp[Index][0], pPlane, sizeof(state->clip.ucp[0]));
2214 if (unlikely(This->is_recording))
2215 state->changed.ucp |= 1 << Index;
2216 else
2217 nine_context_set_clip_plane(This, Index, (struct nine_clipplane *)pPlane);
2218
2219 return D3D_OK;
2220 }
2221
2222 HRESULT NINE_WINAPI
2223 NineDevice9_GetClipPlane( struct NineDevice9 *This,
2224 DWORD Index,
2225 float *pPlane )
2226 {
2227 const struct nine_state *state = &This->state;
2228
2229 user_assert(Index < PIPE_MAX_CLIP_PLANES, D3DERR_INVALIDCALL);
2230
2231 memcpy(pPlane, &state->clip.ucp[Index][0], sizeof(state->clip.ucp[0]));
2232 return D3D_OK;
2233 }
2234
2235 HRESULT NINE_WINAPI
2236 NineDevice9_SetRenderState( struct NineDevice9 *This,
2237 D3DRENDERSTATETYPE State,
2238 DWORD Value )
2239 {
2240 struct nine_state *state = This->update;
2241
2242 DBG("This=%p State=%u(%s) Value=%08x\n", This,
2243 State, nine_d3drs_to_string(State), Value);
2244
2245 user_assert(State < D3DRS_COUNT, D3DERR_INVALIDCALL);
2246
2247 if (unlikely(This->is_recording)) {
2248 state->rs_advertised[State] = Value;
2249 /* only need to record changed render states for stateblocks */
2250 state->changed.rs[State / 32] |= 1 << (State % 32);
2251 state->changed.group |= nine_render_state_group[State];
2252 return D3D_OK;
2253 }
2254
2255 if (state->rs_advertised[State] == Value)
2256 return D3D_OK;
2257
2258 state->rs_advertised[State] = Value;
2259 nine_context_set_render_state(This, State, Value);
2260
2261 return D3D_OK;
2262 }
2263
2264 HRESULT NINE_WINAPI
2265 NineDevice9_GetRenderState( struct NineDevice9 *This,
2266 D3DRENDERSTATETYPE State,
2267 DWORD *pValue )
2268 {
2269 user_assert(State < D3DRS_COUNT, D3DERR_INVALIDCALL);
2270
2271 *pValue = This->state.rs_advertised[State];
2272 return D3D_OK;
2273 }
2274
2275 HRESULT NINE_WINAPI
2276 NineDevice9_CreateStateBlock( struct NineDevice9 *This,
2277 D3DSTATEBLOCKTYPE Type,
2278 IDirect3DStateBlock9 **ppSB )
2279 {
2280 struct NineStateBlock9 *nsb;
2281 struct nine_state *dst;
2282 HRESULT hr;
2283 enum nine_stateblock_type type;
2284 unsigned s;
2285
2286 DBG("This=%p Type=%u ppSB=%p\n", This, Type, ppSB);
2287
2288 user_assert(Type == D3DSBT_ALL ||
2289 Type == D3DSBT_VERTEXSTATE ||
2290 Type == D3DSBT_PIXELSTATE, D3DERR_INVALIDCALL);
2291
2292 switch (Type) {
2293 case D3DSBT_VERTEXSTATE: type = NINESBT_VERTEXSTATE; break;
2294 case D3DSBT_PIXELSTATE: type = NINESBT_PIXELSTATE; break;
2295 default:
2296 type = NINESBT_ALL;
2297 break;
2298 }
2299
2300 hr = NineStateBlock9_new(This, &nsb, type);
2301 if (FAILED(hr))
2302 return hr;
2303 *ppSB = (IDirect3DStateBlock9 *)nsb;
2304 dst = &nsb->state;
2305
2306 dst->changed.group =
2307 NINE_STATE_TEXTURE |
2308 NINE_STATE_SAMPLER;
2309
2310 if (Type == D3DSBT_ALL || Type == D3DSBT_VERTEXSTATE) {
2311 dst->changed.group |=
2312 NINE_STATE_FF_LIGHTING |
2313 NINE_STATE_VS | NINE_STATE_VS_CONST |
2314 NINE_STATE_VDECL;
2315 /* TODO: texture/sampler state */
2316 memcpy(dst->changed.rs,
2317 nine_render_states_vertex, sizeof(dst->changed.rs));
2318 nine_ranges_insert(&dst->changed.vs_const_f, 0, This->may_swvp ? NINE_MAX_CONST_F_SWVP : This->max_vs_const_f,
2319 &This->range_pool);
2320 nine_ranges_insert(&dst->changed.vs_const_i, 0, This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I,
2321 &This->range_pool);
2322 nine_ranges_insert(&dst->changed.vs_const_b, 0, This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B,
2323 &This->range_pool);
2324 for (s = 0; s < NINE_MAX_SAMPLERS; ++s)
2325 dst->changed.sampler[s] |= 1 << D3DSAMP_DMAPOFFSET;
2326 if (This->state.ff.num_lights) {
2327 dst->ff.num_lights = This->state.ff.num_lights;
2328 /* zero'd -> light type won't be NINED3DLIGHT_INVALID, so
2329 * all currently existing lights will be captured
2330 */
2331 dst->ff.light = CALLOC(This->state.ff.num_lights,
2332 sizeof(D3DLIGHT9));
2333 if (!dst->ff.light) {
2334 nine_bind(ppSB, NULL);
2335 return E_OUTOFMEMORY;
2336 }
2337 }
2338 }
2339 if (Type == D3DSBT_ALL || Type == D3DSBT_PIXELSTATE) {
2340 dst->changed.group |=
2341 NINE_STATE_PS | NINE_STATE_PS_CONST | NINE_STATE_BLEND |
2342 NINE_STATE_FF_OTHER | NINE_STATE_FF_PSSTAGES | NINE_STATE_PS_CONST |
2343 NINE_STATE_FB | NINE_STATE_DSA | NINE_STATE_MULTISAMPLE |
2344 NINE_STATE_RASTERIZER | NINE_STATE_STENCIL_REF;
2345 memcpy(dst->changed.rs,
2346 nine_render_states_pixel, sizeof(dst->changed.rs));
2347 nine_ranges_insert(&dst->changed.ps_const_f, 0, This->max_ps_const_f,
2348 &This->range_pool);
2349 dst->changed.ps_const_i = 0xffff;
2350 dst->changed.ps_const_b = 0xffff;
2351 for (s = 0; s < NINE_MAX_SAMPLERS; ++s)
2352 dst->changed.sampler[s] |= 0x1ffe;
2353 for (s = 0; s < NINE_MAX_TEXTURE_STAGES; ++s) {
2354 dst->ff.changed.tex_stage[s][0] |= 0xffffffff;
2355 dst->ff.changed.tex_stage[s][1] |= 0xffffffff;
2356 }
2357 }
2358 if (Type == D3DSBT_ALL) {
2359 dst->changed.group |=
2360 NINE_STATE_VIEWPORT |
2361 NINE_STATE_SCISSOR |
2362 NINE_STATE_RASTERIZER |
2363 NINE_STATE_BLEND |
2364 NINE_STATE_DSA |
2365 NINE_STATE_IDXBUF |
2366 NINE_STATE_MATERIAL |
2367 NINE_STATE_BLEND_COLOR |
2368 NINE_STATE_SAMPLE_MASK;
2369 memset(dst->changed.rs, ~0, (D3DRS_COUNT / 32) * sizeof(uint32_t));
2370 dst->changed.rs[D3DRS_LAST / 32] |= (1 << (D3DRS_COUNT % 32)) - 1;
2371 dst->changed.vtxbuf = (1ULL << This->caps.MaxStreams) - 1;
2372 dst->changed.stream_freq = dst->changed.vtxbuf;
2373 dst->changed.ucp = (1 << PIPE_MAX_CLIP_PLANES) - 1;
2374 dst->changed.texture = (1 << NINE_MAX_SAMPLERS) - 1;
2375 }
2376 NineStateBlock9_Capture(NineStateBlock9(*ppSB));
2377
2378 /* TODO: fixed function state */
2379
2380 return D3D_OK;
2381 }
2382
2383 HRESULT NINE_WINAPI
2384 NineDevice9_BeginStateBlock( struct NineDevice9 *This )
2385 {
2386 HRESULT hr;
2387
2388 DBG("This=%p\n", This);
2389
2390 user_assert(!This->record, D3DERR_INVALIDCALL);
2391
2392 hr = NineStateBlock9_new(This, &This->record, NINESBT_CUSTOM);
2393 if (FAILED(hr))
2394 return hr;
2395 NineUnknown_ConvertRefToBind(NineUnknown(This->record));
2396
2397 This->update = &This->record->state;
2398 This->is_recording = TRUE;
2399
2400 return D3D_OK;
2401 }
2402
2403 HRESULT NINE_WINAPI
2404 NineDevice9_EndStateBlock( struct NineDevice9 *This,
2405 IDirect3DStateBlock9 **ppSB )
2406 {
2407 DBG("This=%p ppSB=%p\n", This, ppSB);
2408
2409 user_assert(This->record, D3DERR_INVALIDCALL);
2410
2411 This->update = &This->state;
2412 This->is_recording = FALSE;
2413
2414 NineUnknown_AddRef(NineUnknown(This->record));
2415 *ppSB = (IDirect3DStateBlock9 *)This->record;
2416 NineUnknown_Unbind(NineUnknown(This->record));
2417 This->record = NULL;
2418
2419 return D3D_OK;
2420 }
2421
2422 HRESULT NINE_WINAPI
2423 NineDevice9_SetClipStatus( struct NineDevice9 *This,
2424 const D3DCLIPSTATUS9 *pClipStatus )
2425 {
2426 STUB(D3DERR_INVALIDCALL);
2427 }
2428
2429 HRESULT NINE_WINAPI
2430 NineDevice9_GetClipStatus( struct NineDevice9 *This,
2431 D3DCLIPSTATUS9 *pClipStatus )
2432 {
2433 STUB(D3DERR_INVALIDCALL);
2434 }
2435
2436 HRESULT NINE_WINAPI
2437 NineDevice9_GetTexture( struct NineDevice9 *This,
2438 DWORD Stage,
2439 IDirect3DBaseTexture9 **ppTexture )
2440 {
2441 user_assert(Stage < This->caps.MaxSimultaneousTextures ||
2442 Stage == D3DDMAPSAMPLER ||
2443 (Stage >= D3DVERTEXTEXTURESAMPLER0 &&
2444 Stage <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL);
2445 user_assert(ppTexture, D3DERR_INVALIDCALL);
2446
2447 if (Stage >= D3DDMAPSAMPLER)
2448 Stage = Stage - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS;
2449
2450 *ppTexture = (IDirect3DBaseTexture9 *)This->state.texture[Stage];
2451
2452 if (This->state.texture[Stage])
2453 NineUnknown_AddRef(NineUnknown(This->state.texture[Stage]));
2454 return D3D_OK;
2455 }
2456
2457 HRESULT NINE_WINAPI
2458 NineDevice9_SetTexture( struct NineDevice9 *This,
2459 DWORD Stage,
2460 IDirect3DBaseTexture9 *pTexture )
2461 {
2462 struct nine_state *state = This->update;
2463 struct NineBaseTexture9 *tex = NineBaseTexture9(pTexture);
2464 struct NineBaseTexture9 *old;
2465
2466 DBG("This=%p Stage=%u pTexture=%p\n", This, Stage, pTexture);
2467
2468 user_assert(Stage < This->caps.MaxSimultaneousTextures ||
2469 Stage == D3DDMAPSAMPLER ||
2470 (Stage >= D3DVERTEXTEXTURESAMPLER0 &&
2471 Stage <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL);
2472 user_assert(!tex || (tex->base.pool != D3DPOOL_SCRATCH &&
2473 tex->base.pool != D3DPOOL_SYSTEMMEM), D3DERR_INVALIDCALL);
2474
2475 if (Stage >= D3DDMAPSAMPLER)
2476 Stage = Stage - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS;
2477
2478 if (This->is_recording) {
2479 state->changed.texture |= 1 << Stage;
2480 state->changed.group |= NINE_STATE_TEXTURE;
2481 nine_bind(&state->texture[Stage], pTexture);
2482 return D3D_OK;
2483 }
2484
2485 old = state->texture[Stage];
2486 if (old == tex)
2487 return D3D_OK;
2488
2489 NineBindTextureToDevice(This, &state->texture[Stage], tex);
2490
2491 nine_context_set_texture(This, Stage, tex);
2492
2493 return D3D_OK;
2494 }
2495
2496 HRESULT NINE_WINAPI
2497 NineDevice9_GetTextureStageState( struct NineDevice9 *This,
2498 DWORD Stage,
2499 D3DTEXTURESTAGESTATETYPE Type,
2500 DWORD *pValue )
2501 {
2502 const struct nine_state *state = &This->state;
2503
2504 user_assert(Stage < ARRAY_SIZE(state->ff.tex_stage), D3DERR_INVALIDCALL);
2505 user_assert(Type < ARRAY_SIZE(state->ff.tex_stage[0]), D3DERR_INVALIDCALL);
2506
2507 *pValue = state->ff.tex_stage[Stage][Type];
2508
2509 return D3D_OK;
2510 }
2511
2512 HRESULT NINE_WINAPI
2513 NineDevice9_SetTextureStageState( struct NineDevice9 *This,
2514 DWORD Stage,
2515 D3DTEXTURESTAGESTATETYPE Type,
2516 DWORD Value )
2517 {
2518 struct nine_state *state = This->update;
2519
2520 DBG("Stage=%u Type=%u Value=%08x\n", Stage, Type, Value);
2521 nine_dump_D3DTSS_value(DBG_FF, Type, Value);
2522
2523 user_assert(Stage < ARRAY_SIZE(state->ff.tex_stage), D3DERR_INVALIDCALL);
2524 user_assert(Type < ARRAY_SIZE(state->ff.tex_stage[0]), D3DERR_INVALIDCALL);
2525
2526 state->ff.tex_stage[Stage][Type] = Value;
2527
2528 if (unlikely(This->is_recording)) {
2529 if (Type == D3DTSS_TEXTURETRANSFORMFLAGS)
2530 state->changed.group |= NINE_STATE_PS1X_SHADER;
2531 state->changed.group |= NINE_STATE_FF_PSSTAGES;
2532 state->ff.changed.tex_stage[Stage][Type / 32] |= 1 << (Type % 32);
2533 } else
2534 nine_context_set_texture_stage_state(This, Stage, Type, Value);
2535
2536 return D3D_OK;
2537 }
2538
2539 HRESULT NINE_WINAPI
2540 NineDevice9_GetSamplerState( struct NineDevice9 *This,
2541 DWORD Sampler,
2542 D3DSAMPLERSTATETYPE Type,
2543 DWORD *pValue )
2544 {
2545 user_assert(Sampler < This->caps.MaxSimultaneousTextures ||
2546 Sampler == D3DDMAPSAMPLER ||
2547 (Sampler >= D3DVERTEXTEXTURESAMPLER0 &&
2548 Sampler <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL);
2549
2550 if (Sampler >= D3DDMAPSAMPLER)
2551 Sampler = Sampler - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS;
2552
2553 *pValue = This->state.samp_advertised[Sampler][Type];
2554 return D3D_OK;
2555 }
2556
2557 HRESULT NINE_WINAPI
2558 NineDevice9_SetSamplerState( struct NineDevice9 *This,
2559 DWORD Sampler,
2560 D3DSAMPLERSTATETYPE Type,
2561 DWORD Value )
2562 {
2563 struct nine_state *state = This->update;
2564
2565 DBG("This=%p Sampler=%u Type=%s Value=%08x\n", This,
2566 Sampler, nine_D3DSAMP_to_str(Type), Value);
2567
2568 user_assert(Sampler < This->caps.MaxSimultaneousTextures ||
2569 Sampler == D3DDMAPSAMPLER ||
2570 (Sampler >= D3DVERTEXTEXTURESAMPLER0 &&
2571 Sampler <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL);
2572
2573 if (Sampler >= D3DDMAPSAMPLER)
2574 Sampler = Sampler - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS;
2575
2576 if (unlikely(This->is_recording)) {
2577 state->samp_advertised[Sampler][Type] = Value;
2578 state->changed.group |= NINE_STATE_SAMPLER;
2579 state->changed.sampler[Sampler] |= 1 << Type;
2580 return D3D_OK;
2581 }
2582
2583 if (state->samp_advertised[Sampler][Type] == Value)
2584 return D3D_OK;
2585
2586 state->samp_advertised[Sampler][Type] = Value;
2587 nine_context_set_sampler_state(This, Sampler, Type, Value);
2588
2589 return D3D_OK;
2590 }
2591
2592 HRESULT NINE_WINAPI
2593 NineDevice9_ValidateDevice( struct NineDevice9 *This,
2594 DWORD *pNumPasses )
2595 {
2596 const struct nine_state *state = &This->state;
2597 unsigned i;
2598 unsigned w = 0, h = 0;
2599
2600 DBG("This=%p pNumPasses=%p\n", This, pNumPasses);
2601
2602 for (i = 0; i < ARRAY_SIZE(state->samp_advertised); ++i) {
2603 if (state->samp_advertised[i][D3DSAMP_MINFILTER] == D3DTEXF_NONE ||
2604 state->samp_advertised[i][D3DSAMP_MAGFILTER] == D3DTEXF_NONE)
2605 return D3DERR_UNSUPPORTEDTEXTUREFILTER;
2606 }
2607
2608 for (i = 0; i < This->caps.NumSimultaneousRTs; ++i) {
2609 if (!state->rt[i])
2610 continue;
2611 if (w == 0) {
2612 w = state->rt[i]->desc.Width;
2613 h = state->rt[i]->desc.Height;
2614 } else
2615 if (state->rt[i]->desc.Width != w || state->rt[i]->desc.Height != h) {
2616 return D3DERR_CONFLICTINGRENDERSTATE;
2617 }
2618 }
2619 if (state->ds &&
2620 (state->rs_advertised[D3DRS_ZENABLE] || state->rs_advertised[D3DRS_STENCILENABLE])) {
2621 if (w != 0 &&
2622 (state->ds->desc.Width != w || state->ds->desc.Height != h))
2623 return D3DERR_CONFLICTINGRENDERSTATE;
2624 }
2625
2626 if (pNumPasses)
2627 *pNumPasses = 1;
2628
2629 return D3D_OK;
2630 }
2631
2632 HRESULT NINE_WINAPI
2633 NineDevice9_SetPaletteEntries( struct NineDevice9 *This,
2634 UINT PaletteNumber,
2635 const PALETTEENTRY *pEntries )
2636 {
2637 STUB(D3D_OK); /* like wine */
2638 }
2639
2640 HRESULT NINE_WINAPI
2641 NineDevice9_GetPaletteEntries( struct NineDevice9 *This,
2642 UINT PaletteNumber,
2643 PALETTEENTRY *pEntries )
2644 {
2645 STUB(D3DERR_INVALIDCALL);
2646 }
2647
2648 HRESULT NINE_WINAPI
2649 NineDevice9_SetCurrentTexturePalette( struct NineDevice9 *This,
2650 UINT PaletteNumber )
2651 {
2652 STUB(D3D_OK); /* like wine */
2653 }
2654
2655 HRESULT NINE_WINAPI
2656 NineDevice9_GetCurrentTexturePalette( struct NineDevice9 *This,
2657 UINT *PaletteNumber )
2658 {
2659 STUB(D3DERR_INVALIDCALL);
2660 }
2661
2662 HRESULT NINE_WINAPI
2663 NineDevice9_SetScissorRect( struct NineDevice9 *This,
2664 const RECT *pRect )
2665 {
2666 struct nine_state *state = This->update;
2667
2668 DBG("x=(%u..%u) y=(%u..%u)\n",
2669 pRect->left, pRect->top, pRect->right, pRect->bottom);
2670
2671 state->scissor.minx = pRect->left;
2672 state->scissor.miny = pRect->top;
2673 state->scissor.maxx = pRect->right;
2674 state->scissor.maxy = pRect->bottom;
2675
2676 if (unlikely(This->is_recording))
2677 state->changed.group |= NINE_STATE_SCISSOR;
2678 else
2679 nine_context_set_scissor(This, &state->scissor);
2680
2681 return D3D_OK;
2682 }
2683
2684 HRESULT NINE_WINAPI
2685 NineDevice9_GetScissorRect( struct NineDevice9 *This,
2686 RECT *pRect )
2687 {
2688 pRect->left = This->state.scissor.minx;
2689 pRect->top = This->state.scissor.miny;
2690 pRect->right = This->state.scissor.maxx;
2691 pRect->bottom = This->state.scissor.maxy;
2692
2693 return D3D_OK;
2694 }
2695
2696 HRESULT NINE_WINAPI
2697 NineDevice9_SetSoftwareVertexProcessing( struct NineDevice9 *This,
2698 BOOL bSoftware )
2699 {
2700 if (This->params.BehaviorFlags & D3DCREATE_MIXED_VERTEXPROCESSING) {
2701 This->swvp = bSoftware;
2702 nine_context_set_swvp(This, bSoftware);
2703 return D3D_OK;
2704 } else
2705 return D3DERR_INVALIDCALL; /* msdn. TODO: check in practice */
2706 }
2707
2708 BOOL NINE_WINAPI
2709 NineDevice9_GetSoftwareVertexProcessing( struct NineDevice9 *This )
2710 {
2711 return This->swvp;
2712 }
2713
2714 HRESULT NINE_WINAPI
2715 NineDevice9_SetNPatchMode( struct NineDevice9 *This,
2716 float nSegments )
2717 {
2718 return D3D_OK; /* Nothing to do because we don't advertise NPatch support */
2719 }
2720
2721 float NINE_WINAPI
2722 NineDevice9_GetNPatchMode( struct NineDevice9 *This )
2723 {
2724 STUB(0);
2725 }
2726
2727 /* TODO: only go through dirty textures */
2728 static void
2729 validate_textures(struct NineDevice9 *device)
2730 {
2731 struct NineBaseTexture9 *tex, *ptr;
2732 LIST_FOR_EACH_ENTRY_SAFE(tex, ptr, &device->update_textures, list) {
2733 list_delinit(&tex->list);
2734 NineBaseTexture9_Validate(tex);
2735 }
2736 }
2737
2738 static void
2739 update_managed_buffers(struct NineDevice9 *device)
2740 {
2741 struct NineBuffer9 *buf, *ptr;
2742 LIST_FOR_EACH_ENTRY_SAFE(buf, ptr, &device->update_buffers, managed.list) {
2743 list_delinit(&buf->managed.list);
2744 NineBuffer9_Upload(buf);
2745 }
2746 }
2747
2748 static void
2749 NineBeforeDraw( struct NineDevice9 *This )
2750 {
2751 /* Upload Managed dirty content */
2752 validate_textures(This); /* may clobber state */
2753 update_managed_buffers(This);
2754 }
2755
2756 static void
2757 NineAfterDraw( struct NineDevice9 *This )
2758 {
2759 unsigned i;
2760 struct nine_state *state = &This->state;
2761 unsigned ps_mask = state->ps ? state->ps->rt_mask : 1;
2762
2763 /* Flag render-targets with autogenmipmap for mipmap regeneration */
2764 for (i = 0; i < This->caps.NumSimultaneousRTs; ++i) {
2765 struct NineSurface9 *rt = state->rt[i];
2766
2767 if (rt && rt->desc.Format != D3DFMT_NULL && (ps_mask & (1 << i)) &&
2768 rt->desc.Usage & D3DUSAGE_AUTOGENMIPMAP) {
2769 assert(rt->texture == D3DRTYPE_TEXTURE ||
2770 rt->texture == D3DRTYPE_CUBETEXTURE);
2771 NineBaseTexture9(rt->base.base.container)->dirty_mip = TRUE;
2772 }
2773 }
2774 }
2775
2776 HRESULT NINE_WINAPI
2777 NineDevice9_DrawPrimitive( struct NineDevice9 *This,
2778 D3DPRIMITIVETYPE PrimitiveType,
2779 UINT StartVertex,
2780 UINT PrimitiveCount )
2781 {
2782 DBG("iface %p, PrimitiveType %u, StartVertex %u, PrimitiveCount %u\n",
2783 This, PrimitiveType, StartVertex, PrimitiveCount);
2784
2785 NineBeforeDraw(This);
2786 nine_context_draw_primitive(This, PrimitiveType, StartVertex, PrimitiveCount);
2787 NineAfterDraw(This);
2788
2789 return D3D_OK;
2790 }
2791
2792 HRESULT NINE_WINAPI
2793 NineDevice9_DrawIndexedPrimitive( struct NineDevice9 *This,
2794 D3DPRIMITIVETYPE PrimitiveType,
2795 INT BaseVertexIndex,
2796 UINT MinVertexIndex,
2797 UINT NumVertices,
2798 UINT StartIndex,
2799 UINT PrimitiveCount )
2800 {
2801 DBG("iface %p, PrimitiveType %u, BaseVertexIndex %u, MinVertexIndex %u "
2802 "NumVertices %u, StartIndex %u, PrimitiveCount %u\n",
2803 This, PrimitiveType, BaseVertexIndex, MinVertexIndex, NumVertices,
2804 StartIndex, PrimitiveCount);
2805
2806 user_assert(This->state.idxbuf, D3DERR_INVALIDCALL);
2807 user_assert(This->state.vdecl, D3DERR_INVALIDCALL);
2808
2809 NineBeforeDraw(This);
2810 nine_context_draw_indexed_primitive(This, PrimitiveType, BaseVertexIndex,
2811 MinVertexIndex, NumVertices, StartIndex,
2812 PrimitiveCount);
2813 NineAfterDraw(This);
2814
2815 return D3D_OK;
2816 }
2817
2818 HRESULT NINE_WINAPI
2819 NineDevice9_DrawPrimitiveUP( struct NineDevice9 *This,
2820 D3DPRIMITIVETYPE PrimitiveType,
2821 UINT PrimitiveCount,
2822 const void *pVertexStreamZeroData,
2823 UINT VertexStreamZeroStride )
2824 {
2825 struct pipe_vertex_buffer vtxbuf;
2826
2827 DBG("iface %p, PrimitiveType %u, PrimitiveCount %u, data %p, stride %u\n",
2828 This, PrimitiveType, PrimitiveCount,
2829 pVertexStreamZeroData, VertexStreamZeroStride);
2830
2831 user_assert(pVertexStreamZeroData && VertexStreamZeroStride,
2832 D3DERR_INVALIDCALL);
2833 user_assert(PrimitiveCount, D3D_OK);
2834
2835 vtxbuf.stride = VertexStreamZeroStride;
2836 vtxbuf.buffer_offset = 0;
2837 vtxbuf.buffer = NULL;
2838 vtxbuf.user_buffer = pVertexStreamZeroData;
2839
2840 if (!This->driver_caps.user_vbufs) {
2841 /* Implicit use of context pipe */
2842 (void)NineDevice9_GetPipe(This);
2843 u_upload_data(This->vertex_uploader,
2844 0,
2845 (prim_count_to_vertex_count(PrimitiveType, PrimitiveCount)) * VertexStreamZeroStride, /* XXX */
2846 4,
2847 vtxbuf.user_buffer,
2848 &vtxbuf.buffer_offset,
2849 &vtxbuf.buffer);
2850 u_upload_unmap(This->vertex_uploader);
2851 vtxbuf.user_buffer = NULL;
2852 }
2853
2854 NineBeforeDraw(This);
2855 nine_context_draw_primitive_from_vtxbuf(This, PrimitiveType, PrimitiveCount, &vtxbuf);
2856 NineAfterDraw(This);
2857
2858 pipe_resource_reference(&vtxbuf.buffer, NULL);
2859
2860 NineDevice9_PauseRecording(This);
2861 NineDevice9_SetStreamSource(This, 0, NULL, 0, 0);
2862 NineDevice9_ResumeRecording(This);
2863
2864 return D3D_OK;
2865 }
2866
2867 HRESULT NINE_WINAPI
2868 NineDevice9_DrawIndexedPrimitiveUP( struct NineDevice9 *This,
2869 D3DPRIMITIVETYPE PrimitiveType,
2870 UINT MinVertexIndex,
2871 UINT NumVertices,
2872 UINT PrimitiveCount,
2873 const void *pIndexData,
2874 D3DFORMAT IndexDataFormat,
2875 const void *pVertexStreamZeroData,
2876 UINT VertexStreamZeroStride )
2877 {
2878 struct pipe_vertex_buffer vbuf;
2879 struct pipe_index_buffer ibuf;
2880
2881 DBG("iface %p, PrimitiveType %u, MinVertexIndex %u, NumVertices %u "
2882 "PrimitiveCount %u, pIndexData %p, IndexDataFormat %u "
2883 "pVertexStreamZeroData %p, VertexStreamZeroStride %u\n",
2884 This, PrimitiveType, MinVertexIndex, NumVertices, PrimitiveCount,
2885 pIndexData, IndexDataFormat,
2886 pVertexStreamZeroData, VertexStreamZeroStride);
2887
2888 user_assert(pIndexData && pVertexStreamZeroData, D3DERR_INVALIDCALL);
2889 user_assert(VertexStreamZeroStride, D3DERR_INVALIDCALL);
2890 user_assert(IndexDataFormat == D3DFMT_INDEX16 ||
2891 IndexDataFormat == D3DFMT_INDEX32, D3DERR_INVALIDCALL);
2892 user_assert(PrimitiveCount, D3D_OK);
2893
2894 vbuf.stride = VertexStreamZeroStride;
2895 vbuf.buffer_offset = 0;
2896 vbuf.buffer = NULL;
2897 vbuf.user_buffer = pVertexStreamZeroData;
2898
2899 ibuf.index_size = (IndexDataFormat == D3DFMT_INDEX16) ? 2 : 4;
2900 ibuf.offset = 0;
2901 ibuf.buffer = NULL;
2902 ibuf.user_buffer = pIndexData;
2903
2904 if (!This->driver_caps.user_vbufs) {
2905 const unsigned base = MinVertexIndex * VertexStreamZeroStride;
2906 /* Implicit use of context pipe */
2907 (void)NineDevice9_GetPipe(This);
2908 u_upload_data(This->vertex_uploader,
2909 base,
2910 NumVertices * VertexStreamZeroStride, /* XXX */
2911 4,
2912 (const uint8_t *)vbuf.user_buffer + base,
2913 &vbuf.buffer_offset,
2914 &vbuf.buffer);
2915 u_upload_unmap(This->vertex_uploader);
2916 /* Won't be used: */
2917 vbuf.buffer_offset -= base;
2918 vbuf.user_buffer = NULL;
2919 }
2920 if (!This->driver_caps.user_ibufs) {
2921 /* Implicit use of context pipe */
2922 (void)NineDevice9_GetPipe(This);
2923 u_upload_data(This->index_uploader,
2924 0,
2925 (prim_count_to_vertex_count(PrimitiveType, PrimitiveCount)) * ibuf.index_size,
2926 4,
2927 ibuf.user_buffer,
2928 &ibuf.offset,
2929 &ibuf.buffer);
2930 u_upload_unmap(This->index_uploader);
2931 ibuf.user_buffer = NULL;
2932 }
2933
2934 NineBeforeDraw(This);
2935 nine_context_draw_indexed_primitive_from_vtxbuf_idxbuf(This, PrimitiveType,
2936 MinVertexIndex,
2937 NumVertices,
2938 PrimitiveCount,
2939 &vbuf,
2940 &ibuf);
2941 NineAfterDraw(This);
2942
2943 pipe_resource_reference(&vbuf.buffer, NULL);
2944 pipe_resource_reference(&ibuf.buffer, NULL);
2945
2946 NineDevice9_PauseRecording(This);
2947 NineDevice9_SetIndices(This, NULL);
2948 NineDevice9_SetStreamSource(This, 0, NULL, 0, 0);
2949 NineDevice9_ResumeRecording(This);
2950
2951 return D3D_OK;
2952 }
2953
2954 HRESULT NINE_WINAPI
2955 NineDevice9_ProcessVertices( struct NineDevice9 *This,
2956 UINT SrcStartIndex,
2957 UINT DestIndex,
2958 UINT VertexCount,
2959 IDirect3DVertexBuffer9 *pDestBuffer,
2960 IDirect3DVertexDeclaration9 *pVertexDecl,
2961 DWORD Flags )
2962 {
2963 struct pipe_screen *screen_sw = This->screen_sw;
2964 struct pipe_context *pipe_sw = This->pipe_sw;
2965 struct NineVertexDeclaration9 *vdecl = NineVertexDeclaration9(pVertexDecl);
2966 struct NineVertexBuffer9 *dst = NineVertexBuffer9(pDestBuffer);
2967 struct NineVertexShader9 *vs;
2968 struct pipe_resource *resource;
2969 struct pipe_transfer *transfer = NULL;
2970 struct pipe_stream_output_info so;
2971 struct pipe_stream_output_target *target;
2972 struct pipe_draw_info draw;
2973 struct pipe_box box;
2974 bool programmable_vs = This->state.vs && !(This->state.vdecl && This->state.vdecl->position_t);
2975 unsigned offsets[1] = {0};
2976 HRESULT hr;
2977 unsigned buffer_size;
2978 void *map;
2979
2980 DBG("This=%p SrcStartIndex=%u DestIndex=%u VertexCount=%u "
2981 "pDestBuffer=%p pVertexDecl=%p Flags=%d\n",
2982 This, SrcStartIndex, DestIndex, VertexCount, pDestBuffer,
2983 pVertexDecl, Flags);
2984
2985 if (!screen_sw->get_param(screen_sw, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS)) {
2986 DBG("ProcessVertices not supported\n");
2987 return D3DERR_INVALIDCALL;
2988 }
2989
2990
2991 vs = programmable_vs ? This->state.vs : This->ff.vs;
2992 /* Note: version is 0 for ff */
2993 user_assert(vdecl || (vs->byte_code.version < 0x30 && dst->desc.FVF),
2994 D3DERR_INVALIDCALL);
2995 if (!vdecl) {
2996 DWORD FVF = dst->desc.FVF;
2997 vdecl = util_hash_table_get(This->ff.ht_fvf, &FVF);
2998 if (!vdecl) {
2999 hr = NineVertexDeclaration9_new_from_fvf(This, FVF, &vdecl);
3000 if (FAILED(hr))
3001 return hr;
3002 vdecl->fvf = FVF;
3003 util_hash_table_set(This->ff.ht_fvf, &vdecl->fvf, vdecl);
3004 NineUnknown_ConvertRefToBind(NineUnknown(vdecl));
3005 }
3006 }
3007
3008 /* Flags: Can be 0 or D3DPV_DONOTCOPYDATA, and/or lock flags
3009 * D3DPV_DONOTCOPYDATA -> Has effect only for ff. In particular
3010 * if not set, everything from src will be used, and dst
3011 * must match exactly the ff vs outputs.
3012 * TODO: Handle all the checks, etc for ff */
3013 user_assert(vdecl->position_t || programmable_vs,
3014 D3DERR_INVALIDCALL);
3015
3016 /* TODO: Support vs < 3 and ff */
3017 user_assert(vs->byte_code.version == 0x30,
3018 D3DERR_INVALIDCALL);
3019 /* TODO: Not hardcode the constant buffers for swvp */
3020 user_assert(This->may_swvp,
3021 D3DERR_INVALIDCALL);
3022
3023 nine_state_prepare_draw_sw(This, vdecl, SrcStartIndex, VertexCount, &so);
3024
3025 buffer_size = VertexCount * so.stride[0] * 4;
3026 {
3027 struct pipe_resource templ;
3028
3029 memset(&templ, 0, sizeof(templ));
3030 templ.target = PIPE_BUFFER;
3031 templ.format = PIPE_FORMAT_R8_UNORM;
3032 templ.width0 = buffer_size;
3033 templ.flags = 0;
3034 templ.bind = PIPE_BIND_STREAM_OUTPUT;
3035 templ.usage = PIPE_USAGE_STREAM;
3036 templ.height0 = templ.depth0 = templ.array_size = 1;
3037 templ.last_level = templ.nr_samples = 0;
3038
3039 resource = screen_sw->resource_create(screen_sw, &templ);
3040 if (!resource)
3041 return E_OUTOFMEMORY;
3042 }
3043 target = pipe_sw->create_stream_output_target(pipe_sw, resource,
3044 0, buffer_size);
3045 if (!target) {
3046 pipe_resource_reference(&resource, NULL);
3047 return D3DERR_DRIVERINTERNALERROR;
3048 }
3049
3050 draw.mode = PIPE_PRIM_POINTS;
3051 draw.count = VertexCount;
3052 draw.start_instance = 0;
3053 draw.primitive_restart = FALSE;
3054 draw.restart_index = 0;
3055 draw.count_from_stream_output = NULL;
3056 draw.indirect = NULL;
3057 draw.indirect_params = NULL;
3058 draw.instance_count = 1;
3059 draw.indexed = FALSE;
3060 draw.start = 0;
3061 draw.index_bias = 0;
3062 draw.min_index = 0;
3063 draw.max_index = VertexCount - 1;
3064
3065
3066 pipe_sw->set_stream_output_targets(pipe_sw, 1, &target, offsets);
3067
3068 pipe_sw->draw_vbo(pipe_sw, &draw);
3069
3070 pipe_sw->set_stream_output_targets(pipe_sw, 0, NULL, 0);
3071 pipe_sw->stream_output_target_destroy(pipe_sw, target);
3072
3073 u_box_1d(0, VertexCount * so.stride[0] * 4, &box);
3074 map = pipe_sw->transfer_map(pipe_sw, resource, 0, PIPE_TRANSFER_READ, &box,
3075 &transfer);
3076 if (!map) {
3077 hr = D3DERR_DRIVERINTERNALERROR;
3078 goto out;
3079 }
3080
3081 hr = NineVertexDeclaration9_ConvertStreamOutput(vdecl,
3082 dst, DestIndex, VertexCount,
3083 map, &so);
3084 if (transfer)
3085 pipe_sw->transfer_unmap(pipe_sw, transfer);
3086
3087 out:
3088 nine_state_after_draw_sw(This);
3089 pipe_resource_reference(&resource, NULL);
3090 return hr;
3091 }
3092
3093 HRESULT NINE_WINAPI
3094 NineDevice9_CreateVertexDeclaration( struct NineDevice9 *This,
3095 const D3DVERTEXELEMENT9 *pVertexElements,
3096 IDirect3DVertexDeclaration9 **ppDecl )
3097 {
3098 struct NineVertexDeclaration9 *vdecl;
3099
3100 DBG("This=%p pVertexElements=%p ppDecl=%p\n",
3101 This, pVertexElements, ppDecl);
3102
3103 HRESULT hr = NineVertexDeclaration9_new(This, pVertexElements, &vdecl);
3104 if (SUCCEEDED(hr))
3105 *ppDecl = (IDirect3DVertexDeclaration9 *)vdecl;
3106
3107 return hr;
3108 }
3109
3110 HRESULT NINE_WINAPI
3111 NineDevice9_SetVertexDeclaration( struct NineDevice9 *This,
3112 IDirect3DVertexDeclaration9 *pDecl )
3113 {
3114 struct nine_state *state = This->update;
3115 struct NineVertexDeclaration9 *vdecl = NineVertexDeclaration9(pDecl);
3116
3117 DBG("This=%p pDecl=%p\n", This, pDecl);
3118
3119 if (unlikely(This->is_recording)) {
3120 nine_bind(&state->vdecl, vdecl);
3121 state->changed.group |= NINE_STATE_VDECL;
3122 return D3D_OK;
3123 }
3124
3125 if (state->vdecl == vdecl)
3126 return D3D_OK;
3127
3128 nine_bind(&state->vdecl, vdecl);
3129
3130 nine_context_set_vertex_declaration(This, vdecl);
3131
3132 return D3D_OK;
3133 }
3134
3135 HRESULT NINE_WINAPI
3136 NineDevice9_GetVertexDeclaration( struct NineDevice9 *This,
3137 IDirect3DVertexDeclaration9 **ppDecl )
3138 {
3139 user_assert(ppDecl, D3DERR_INVALIDCALL);
3140
3141 *ppDecl = (IDirect3DVertexDeclaration9 *)This->state.vdecl;
3142 if (*ppDecl)
3143 NineUnknown_AddRef(NineUnknown(*ppDecl));
3144 return D3D_OK;
3145 }
3146
3147 HRESULT NINE_WINAPI
3148 NineDevice9_SetFVF( struct NineDevice9 *This,
3149 DWORD FVF )
3150 {
3151 struct NineVertexDeclaration9 *vdecl;
3152 HRESULT hr;
3153
3154 DBG("FVF = %08x\n", FVF);
3155 if (!FVF)
3156 return D3D_OK; /* like wine */
3157
3158 vdecl = util_hash_table_get(This->ff.ht_fvf, &FVF);
3159 if (!vdecl) {
3160 hr = NineVertexDeclaration9_new_from_fvf(This, FVF, &vdecl);
3161 if (FAILED(hr))
3162 return hr;
3163 vdecl->fvf = FVF;
3164 util_hash_table_set(This->ff.ht_fvf, &vdecl->fvf, vdecl);
3165 NineUnknown_ConvertRefToBind(NineUnknown(vdecl));
3166 }
3167 return NineDevice9_SetVertexDeclaration(
3168 This, (IDirect3DVertexDeclaration9 *)vdecl);
3169 }
3170
3171 HRESULT NINE_WINAPI
3172 NineDevice9_GetFVF( struct NineDevice9 *This,
3173 DWORD *pFVF )
3174 {
3175 *pFVF = This->state.vdecl ? This->state.vdecl->fvf : 0;
3176 return D3D_OK;
3177 }
3178
3179 HRESULT NINE_WINAPI
3180 NineDevice9_CreateVertexShader( struct NineDevice9 *This,
3181 const DWORD *pFunction,
3182 IDirect3DVertexShader9 **ppShader )
3183 {
3184 struct NineVertexShader9 *vs;
3185 HRESULT hr;
3186
3187 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader);
3188
3189 hr = NineVertexShader9_new(This, &vs, pFunction, NULL);
3190 if (FAILED(hr))
3191 return hr;
3192 *ppShader = (IDirect3DVertexShader9 *)vs;
3193 return D3D_OK;
3194 }
3195
3196 HRESULT NINE_WINAPI
3197 NineDevice9_SetVertexShader( struct NineDevice9 *This,
3198 IDirect3DVertexShader9 *pShader )
3199 {
3200 struct nine_state *state = This->update;
3201 struct NineVertexShader9 *vs_shader = (struct NineVertexShader9*)pShader;
3202
3203 DBG("This=%p pShader=%p\n", This, pShader);
3204
3205 if (unlikely(This->is_recording)) {
3206 nine_bind(&state->vs, vs_shader);
3207 state->changed.group |= NINE_STATE_VS;
3208 return D3D_OK;
3209 }
3210
3211 if (state->vs == vs_shader)
3212 return D3D_OK;
3213
3214 nine_bind(&state->vs, vs_shader);
3215
3216 nine_context_set_vertex_shader(This, vs_shader);
3217
3218 return D3D_OK;
3219 }
3220
3221 HRESULT NINE_WINAPI
3222 NineDevice9_GetVertexShader( struct NineDevice9 *This,
3223 IDirect3DVertexShader9 **ppShader )
3224 {
3225 user_assert(ppShader, D3DERR_INVALIDCALL);
3226 nine_reference_set(ppShader, This->state.vs);
3227 return D3D_OK;
3228 }
3229
3230 HRESULT NINE_WINAPI
3231 NineDevice9_SetVertexShaderConstantF( struct NineDevice9 *This,
3232 UINT StartRegister,
3233 const float *pConstantData,
3234 UINT Vector4fCount )
3235 {
3236 struct nine_state *state = This->update;
3237 float *vs_const_f = state->vs_const_f;
3238
3239 DBG("This=%p StartRegister=%u pConstantData=%p Vector4fCount=%u\n",
3240 This, StartRegister, pConstantData, Vector4fCount);
3241
3242 user_assert(StartRegister < This->caps.MaxVertexShaderConst, D3DERR_INVALIDCALL);
3243 user_assert(StartRegister + Vector4fCount <= This->caps.MaxVertexShaderConst, D3DERR_INVALIDCALL);
3244
3245 if (!Vector4fCount)
3246 return D3D_OK;
3247 user_assert(pConstantData, D3DERR_INVALIDCALL);
3248
3249 if (unlikely(This->is_recording)) {
3250 memcpy(&vs_const_f[StartRegister * 4],
3251 pConstantData,
3252 Vector4fCount * 4 * sizeof(state->vs_const_f[0]));
3253
3254 nine_ranges_insert(&state->changed.vs_const_f,
3255 StartRegister, StartRegister + Vector4fCount,
3256 &This->range_pool);
3257
3258 state->changed.group |= NINE_STATE_VS_CONST;
3259
3260 return D3D_OK;
3261 }
3262
3263 if (!memcmp(&vs_const_f[StartRegister * 4], pConstantData,
3264 Vector4fCount * 4 * sizeof(state->vs_const_f[0])))
3265 return D3D_OK;
3266
3267 memcpy(&vs_const_f[StartRegister * 4],
3268 pConstantData,
3269 Vector4fCount * 4 * sizeof(state->vs_const_f[0]));
3270
3271 nine_context_set_vertex_shader_constant_f(This, StartRegister, pConstantData,
3272 Vector4fCount * 4 * sizeof(state->vs_const_f[0]),
3273 Vector4fCount);
3274
3275 return D3D_OK;
3276 }
3277
3278 HRESULT NINE_WINAPI
3279 NineDevice9_GetVertexShaderConstantF( struct NineDevice9 *This,
3280 UINT StartRegister,
3281 float *pConstantData,
3282 UINT Vector4fCount )
3283 {
3284 const struct nine_state *state = &This->state;
3285
3286 user_assert(StartRegister < This->caps.MaxVertexShaderConst, D3DERR_INVALIDCALL);
3287 user_assert(StartRegister + Vector4fCount <= This->caps.MaxVertexShaderConst, D3DERR_INVALIDCALL);
3288 user_assert(pConstantData, D3DERR_INVALIDCALL);
3289
3290 memcpy(pConstantData,
3291 &state->vs_const_f[StartRegister * 4],
3292 Vector4fCount * 4 * sizeof(state->vs_const_f[0]));
3293
3294 return D3D_OK;
3295 }
3296
3297 HRESULT NINE_WINAPI
3298 NineDevice9_SetVertexShaderConstantI( struct NineDevice9 *This,
3299 UINT StartRegister,
3300 const int *pConstantData,
3301 UINT Vector4iCount )
3302 {
3303 struct nine_state *state = This->update;
3304 int i;
3305
3306 DBG("This=%p StartRegister=%u pConstantData=%p Vector4iCount=%u\n",
3307 This, StartRegister, pConstantData, Vector4iCount);
3308
3309 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I),
3310 D3DERR_INVALIDCALL);
3311 user_assert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I),
3312 D3DERR_INVALIDCALL);
3313 user_assert(pConstantData, D3DERR_INVALIDCALL);
3314
3315 if (This->driver_caps.vs_integer) {
3316 if (!This->is_recording) {
3317 if (!memcmp(&state->vs_const_i[4 * StartRegister], pConstantData,
3318 Vector4iCount * sizeof(int[4])))
3319 return D3D_OK;
3320 }
3321 memcpy(&state->vs_const_i[4 * StartRegister],
3322 pConstantData,
3323 Vector4iCount * sizeof(int[4]));
3324 } else {
3325 for (i = 0; i < Vector4iCount; i++) {
3326 state->vs_const_i[4 * (StartRegister + i)] = fui((float)(pConstantData[4 * i]));
3327 state->vs_const_i[4 * (StartRegister + i) + 1] = fui((float)(pConstantData[4 * i + 1]));
3328 state->vs_const_i[4 * (StartRegister + i) + 2] = fui((float)(pConstantData[4 * i + 2]));
3329 state->vs_const_i[4 * (StartRegister + i) + 3] = fui((float)(pConstantData[4 * i + 3]));
3330 }
3331 }
3332
3333 if (unlikely(This->is_recording)) {
3334 nine_ranges_insert(&state->changed.vs_const_i,
3335 StartRegister, StartRegister + Vector4iCount,
3336 &This->range_pool);
3337 state->changed.group |= NINE_STATE_VS_CONST;
3338 } else
3339 nine_context_set_vertex_shader_constant_i(This, StartRegister, pConstantData,
3340 Vector4iCount * sizeof(int[4]), Vector4iCount);
3341
3342 return D3D_OK;
3343 }
3344
3345 HRESULT NINE_WINAPI
3346 NineDevice9_GetVertexShaderConstantI( struct NineDevice9 *This,
3347 UINT StartRegister,
3348 int *pConstantData,
3349 UINT Vector4iCount )
3350 {
3351 const struct nine_state *state = &This->state;
3352 int i;
3353
3354 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I),
3355 D3DERR_INVALIDCALL);
3356 user_assert(StartRegister + Vector4iCount <= (This->may_swvp ? NINE_MAX_CONST_I_SWVP : NINE_MAX_CONST_I),
3357 D3DERR_INVALIDCALL);
3358 user_assert(pConstantData, D3DERR_INVALIDCALL);
3359
3360 if (This->driver_caps.vs_integer) {
3361 memcpy(pConstantData,
3362 &state->vs_const_i[4 * StartRegister],
3363 Vector4iCount * sizeof(int[4]));
3364 } else {
3365 for (i = 0; i < Vector4iCount; i++) {
3366 pConstantData[4 * i] = (int32_t) uif(state->vs_const_i[4 * (StartRegister + i)]);
3367 pConstantData[4 * i + 1] = (int32_t) uif(state->vs_const_i[4 * (StartRegister + i) + 1]);
3368 pConstantData[4 * i + 2] = (int32_t) uif(state->vs_const_i[4 * (StartRegister + i) + 2]);
3369 pConstantData[4 * i + 3] = (int32_t) uif(state->vs_const_i[4 * (StartRegister + i) + 3]);
3370 }
3371 }
3372
3373 return D3D_OK;
3374 }
3375
3376 HRESULT NINE_WINAPI
3377 NineDevice9_SetVertexShaderConstantB( struct NineDevice9 *This,
3378 UINT StartRegister,
3379 const BOOL *pConstantData,
3380 UINT BoolCount )
3381 {
3382 struct nine_state *state = This->update;
3383 int i;
3384 uint32_t bool_true = This->driver_caps.vs_integer ? 0xFFFFFFFF : fui(1.0f);
3385
3386 DBG("This=%p StartRegister=%u pConstantData=%p BoolCount=%u\n",
3387 This, StartRegister, pConstantData, BoolCount);
3388
3389 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B),
3390 D3DERR_INVALIDCALL);
3391 user_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B),
3392 D3DERR_INVALIDCALL);
3393 user_assert(pConstantData, D3DERR_INVALIDCALL);
3394
3395 if (!This->is_recording) {
3396 bool noChange = true;
3397 for (i = 0; i < BoolCount; i++) {
3398 if (!!state->vs_const_b[StartRegister + i] != !!pConstantData[i])
3399 noChange = false;
3400 }
3401 if (noChange)
3402 return D3D_OK;
3403 }
3404
3405 for (i = 0; i < BoolCount; i++)
3406 state->vs_const_b[StartRegister + i] = pConstantData[i] ? bool_true : 0;
3407
3408 if (unlikely(This->is_recording)) {
3409 nine_ranges_insert(&state->changed.vs_const_b,
3410 StartRegister, StartRegister + BoolCount,
3411 &This->range_pool);
3412 state->changed.group |= NINE_STATE_VS_CONST;
3413 } else
3414 nine_context_set_vertex_shader_constant_b(This, StartRegister, pConstantData,
3415 sizeof(BOOL) * BoolCount, BoolCount);
3416
3417 return D3D_OK;
3418 }
3419
3420 HRESULT NINE_WINAPI
3421 NineDevice9_GetVertexShaderConstantB( struct NineDevice9 *This,
3422 UINT StartRegister,
3423 BOOL *pConstantData,
3424 UINT BoolCount )
3425 {
3426 const struct nine_state *state = &This->state;
3427 int i;
3428
3429 user_assert(StartRegister < (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B),
3430 D3DERR_INVALIDCALL);
3431 user_assert(StartRegister + BoolCount <= (This->may_swvp ? NINE_MAX_CONST_B_SWVP : NINE_MAX_CONST_B),
3432 D3DERR_INVALIDCALL);
3433 user_assert(pConstantData, D3DERR_INVALIDCALL);
3434
3435 for (i = 0; i < BoolCount; i++)
3436 pConstantData[i] = state->vs_const_b[StartRegister + i] != 0 ? TRUE : FALSE;
3437
3438 return D3D_OK;
3439 }
3440
3441 HRESULT NINE_WINAPI
3442 NineDevice9_SetStreamSource( struct NineDevice9 *This,
3443 UINT StreamNumber,
3444 IDirect3DVertexBuffer9 *pStreamData,
3445 UINT OffsetInBytes,
3446 UINT Stride )
3447 {
3448 struct nine_state *state = This->update;
3449 struct NineVertexBuffer9 *pVBuf9 = NineVertexBuffer9(pStreamData);
3450 const unsigned i = StreamNumber;
3451
3452 DBG("This=%p StreamNumber=%u pStreamData=%p OffsetInBytes=%u Stride=%u\n",
3453 This, StreamNumber, pStreamData, OffsetInBytes, Stride);
3454
3455 user_assert(StreamNumber < This->caps.MaxStreams, D3DERR_INVALIDCALL);
3456 user_assert(Stride <= This->caps.MaxStreamStride, D3DERR_INVALIDCALL);
3457
3458 if (unlikely(This->is_recording)) {
3459 nine_bind(&state->stream[i], pStreamData);
3460 state->changed.vtxbuf |= 1 << StreamNumber;
3461 state->vtxbuf[i].stride = Stride;
3462 state->vtxbuf[i].buffer_offset = OffsetInBytes;
3463 return D3D_OK;
3464 }
3465
3466 if (state->stream[i] == NineVertexBuffer9(pStreamData) &&
3467 state->vtxbuf[i].stride == Stride &&
3468 state->vtxbuf[i].buffer_offset == OffsetInBytes)
3469 return D3D_OK;
3470
3471 state->vtxbuf[i].stride = Stride;
3472 state->vtxbuf[i].buffer_offset = OffsetInBytes;
3473
3474 NineBindBufferToDevice(This,
3475 (struct NineBuffer9 **)&state->stream[i],
3476 (struct NineBuffer9 *)pVBuf9);
3477
3478 nine_context_set_stream_source(This,
3479 StreamNumber,
3480 pVBuf9,
3481 OffsetInBytes,
3482 Stride);
3483
3484 return D3D_OK;
3485 }
3486
3487 HRESULT NINE_WINAPI
3488 NineDevice9_GetStreamSource( struct NineDevice9 *This,
3489 UINT StreamNumber,
3490 IDirect3DVertexBuffer9 **ppStreamData,
3491 UINT *pOffsetInBytes,
3492 UINT *pStride )
3493 {
3494 const struct nine_state *state = &This->state;
3495 const unsigned i = StreamNumber;
3496
3497 user_assert(StreamNumber < This->caps.MaxStreams, D3DERR_INVALIDCALL);
3498 user_assert(ppStreamData, D3DERR_INVALIDCALL);
3499
3500 nine_reference_set(ppStreamData, state->stream[i]);
3501 *pStride = state->vtxbuf[i].stride;
3502 *pOffsetInBytes = state->vtxbuf[i].buffer_offset;
3503
3504 return D3D_OK;
3505 }
3506
3507 HRESULT NINE_WINAPI
3508 NineDevice9_SetStreamSourceFreq( struct NineDevice9 *This,
3509 UINT StreamNumber,
3510 UINT Setting )
3511 {
3512 struct nine_state *state = This->update;
3513 /* const UINT freq = Setting & 0x7FFFFF; */
3514
3515 DBG("This=%p StreamNumber=%u FrequencyParameter=0x%x\n", This,
3516 StreamNumber, Setting);
3517
3518 user_assert(StreamNumber < This->caps.MaxStreams, D3DERR_INVALIDCALL);
3519 user_assert(StreamNumber != 0 || !(Setting & D3DSTREAMSOURCE_INSTANCEDATA),
3520 D3DERR_INVALIDCALL);
3521 user_assert(!((Setting & D3DSTREAMSOURCE_INSTANCEDATA) &&
3522 (Setting & D3DSTREAMSOURCE_INDEXEDDATA)), D3DERR_INVALIDCALL);
3523 user_assert(Setting, D3DERR_INVALIDCALL);
3524
3525 if (unlikely(This->is_recording)) {
3526 state->stream_freq[StreamNumber] = Setting;
3527 state->changed.stream_freq |= 1 << StreamNumber;
3528 if (StreamNumber != 0)
3529 state->changed.group |= NINE_STATE_STREAMFREQ;
3530 return D3D_OK;
3531 }
3532
3533 if (state->stream_freq[StreamNumber] == Setting)
3534 return D3D_OK;
3535
3536 state->stream_freq[StreamNumber] = Setting;
3537
3538 nine_context_set_stream_source_freq(This, StreamNumber, Setting);
3539 return D3D_OK;
3540 }
3541
3542 HRESULT NINE_WINAPI
3543 NineDevice9_GetStreamSourceFreq( struct NineDevice9 *This,
3544 UINT StreamNumber,
3545 UINT *pSetting )
3546 {
3547 user_assert(StreamNumber < This->caps.MaxStreams, D3DERR_INVALIDCALL);
3548 *pSetting = This->state.stream_freq[StreamNumber];
3549 return D3D_OK;
3550 }
3551
3552 HRESULT NINE_WINAPI
3553 NineDevice9_SetIndices( struct NineDevice9 *This,
3554 IDirect3DIndexBuffer9 *pIndexData )
3555 {
3556 struct nine_state *state = This->update;
3557 struct NineIndexBuffer9 *idxbuf = NineIndexBuffer9(pIndexData);
3558
3559 DBG("This=%p pIndexData=%p\n", This, pIndexData);
3560
3561 if (unlikely(This->is_recording)) {
3562 nine_bind(&state->idxbuf, idxbuf);
3563 state->changed.group |= NINE_STATE_IDXBUF;
3564 return D3D_OK;
3565 }
3566
3567 if (state->idxbuf == idxbuf)
3568 return D3D_OK;
3569
3570 NineBindBufferToDevice(This,
3571 (struct NineBuffer9 **)&state->idxbuf,
3572 (struct NineBuffer9 *)idxbuf);
3573
3574 nine_context_set_indices(This, idxbuf);
3575
3576 return D3D_OK;
3577 }
3578
3579 /* XXX: wine/d3d9 doesn't have pBaseVertexIndex, and it doesn't make sense
3580 * here because it's an argument passed to the Draw calls.
3581 */
3582 HRESULT NINE_WINAPI
3583 NineDevice9_GetIndices( struct NineDevice9 *This,
3584 IDirect3DIndexBuffer9 **ppIndexData)
3585 {
3586 user_assert(ppIndexData, D3DERR_INVALIDCALL);
3587 nine_reference_set(ppIndexData, This->state.idxbuf);
3588 return D3D_OK;
3589 }
3590
3591 HRESULT NINE_WINAPI
3592 NineDevice9_CreatePixelShader( struct NineDevice9 *This,
3593 const DWORD *pFunction,
3594 IDirect3DPixelShader9 **ppShader )
3595 {
3596 struct NinePixelShader9 *ps;
3597 HRESULT hr;
3598
3599 DBG("This=%p pFunction=%p ppShader=%p\n", This, pFunction, ppShader);
3600
3601 hr = NinePixelShader9_new(This, &ps, pFunction, NULL);
3602 if (FAILED(hr))
3603 return hr;
3604 *ppShader = (IDirect3DPixelShader9 *)ps;
3605 return D3D_OK;
3606 }
3607
3608 HRESULT NINE_WINAPI
3609 NineDevice9_SetPixelShader( struct NineDevice9 *This,
3610 IDirect3DPixelShader9 *pShader )
3611 {
3612 struct nine_state *state = This->update;
3613 struct NinePixelShader9 *ps = (struct NinePixelShader9*)pShader;
3614
3615 DBG("This=%p pShader=%p\n", This, pShader);
3616
3617 if (unlikely(This->is_recording)) {
3618 /* Technically we need NINE_STATE_FB only
3619 * if the ps mask changes, but put it always
3620 * to be safe */
3621 nine_bind(&state->ps, pShader);
3622 state->changed.group |= NINE_STATE_PS | NINE_STATE_FB;
3623 return D3D_OK;
3624 }
3625
3626 if (state->ps == ps)
3627 return D3D_OK;
3628
3629 nine_bind(&state->ps, ps);
3630
3631 nine_context_set_pixel_shader(This, ps);
3632
3633 return D3D_OK;
3634 }
3635
3636 HRESULT NINE_WINAPI
3637 NineDevice9_GetPixelShader( struct NineDevice9 *This,
3638 IDirect3DPixelShader9 **ppShader )
3639 {
3640 user_assert(ppShader, D3DERR_INVALIDCALL);
3641 nine_reference_set(ppShader, This->state.ps);
3642 return D3D_OK;
3643 }
3644
3645 HRESULT NINE_WINAPI
3646 NineDevice9_SetPixelShaderConstantF( struct NineDevice9 *This,
3647 UINT StartRegister,
3648 const float *pConstantData,
3649 UINT Vector4fCount )
3650 {
3651 struct nine_state *state = This->update;
3652
3653 DBG("This=%p StartRegister=%u pConstantData=%p Vector4fCount=%u\n",
3654 This, StartRegister, pConstantData, Vector4fCount);
3655
3656 user_assert(StartRegister < NINE_MAX_CONST_F_PS3, D3DERR_INVALIDCALL);
3657 user_assert(StartRegister + Vector4fCount <= NINE_MAX_CONST_F_PS3, D3DERR_INVALIDCALL);
3658
3659 if (!Vector4fCount)
3660 return D3D_OK;
3661 user_assert(pConstantData, D3DERR_INVALIDCALL);
3662
3663 if (unlikely(This->is_recording)) {
3664 memcpy(&state->ps_const_f[StartRegister * 4],
3665 pConstantData,
3666 Vector4fCount * 4 * sizeof(state->ps_const_f[0]));
3667
3668 nine_ranges_insert(&state->changed.ps_const_f,
3669 StartRegister, StartRegister + Vector4fCount,
3670 &This->range_pool);
3671
3672 state->changed.group |= NINE_STATE_PS_CONST;
3673 return D3D_OK;
3674 }
3675
3676 if (!memcmp(&state->ps_const_f[StartRegister * 4], pConstantData,
3677 Vector4fCount * 4 * sizeof(state->ps_const_f[0])))
3678 return D3D_OK;
3679
3680 memcpy(&state->ps_const_f[StartRegister * 4],
3681 pConstantData,
3682 Vector4fCount * 4 * sizeof(state->ps_const_f[0]));
3683
3684 nine_context_set_pixel_shader_constant_f(This, StartRegister, pConstantData,
3685 Vector4fCount * 4 * sizeof(state->ps_const_f[0]),
3686 Vector4fCount);
3687
3688 return D3D_OK;
3689 }
3690
3691 HRESULT NINE_WINAPI
3692 NineDevice9_GetPixelShaderConstantF( struct NineDevice9 *This,
3693 UINT StartRegister,
3694 float *pConstantData,
3695 UINT Vector4fCount )
3696 {
3697 const struct nine_state *state = &This->state;
3698
3699 user_assert(StartRegister < NINE_MAX_CONST_F_PS3, D3DERR_INVALIDCALL);
3700 user_assert(StartRegister + Vector4fCount <= NINE_MAX_CONST_F_PS3, D3DERR_INVALIDCALL);
3701 user_assert(pConstantData, D3DERR_INVALIDCALL);
3702
3703 memcpy(pConstantData,
3704 &state->ps_const_f[StartRegister * 4],
3705 Vector4fCount * 4 * sizeof(state->ps_const_f[0]));
3706
3707 return D3D_OK;
3708 }
3709
3710 HRESULT NINE_WINAPI
3711 NineDevice9_SetPixelShaderConstantI( struct NineDevice9 *This,
3712 UINT StartRegister,
3713 const int *pConstantData,
3714 UINT Vector4iCount )
3715 {
3716 struct nine_state *state = This->update;
3717 int i;
3718
3719 DBG("This=%p StartRegister=%u pConstantData=%p Vector4iCount=%u\n",
3720 This, StartRegister, pConstantData, Vector4iCount);
3721
3722 user_assert(StartRegister < NINE_MAX_CONST_I, D3DERR_INVALIDCALL);
3723 user_assert(StartRegister + Vector4iCount <= NINE_MAX_CONST_I, D3DERR_INVALIDCALL);
3724 user_assert(pConstantData, D3DERR_INVALIDCALL);
3725
3726 if (This->driver_caps.ps_integer) {
3727 if (!This->is_recording) {
3728 if (!memcmp(&state->ps_const_i[StartRegister][0], pConstantData,
3729 Vector4iCount * sizeof(state->ps_const_i[0])))
3730 return D3D_OK;
3731 }
3732 memcpy(&state->ps_const_i[StartRegister][0],
3733 pConstantData,
3734 Vector4iCount * sizeof(state->ps_const_i[0]));
3735 } else {
3736 for (i = 0; i < Vector4iCount; i++) {
3737 state->ps_const_i[StartRegister+i][0] = fui((float)(pConstantData[4*i]));
3738 state->ps_const_i[StartRegister+i][1] = fui((float)(pConstantData[4*i+1]));
3739 state->ps_const_i[StartRegister+i][2] = fui((float)(pConstantData[4*i+2]));
3740 state->ps_const_i[StartRegister+i][3] = fui((float)(pConstantData[4*i+3]));
3741 }
3742 }
3743
3744 if (unlikely(This->is_recording)) {
3745 state->changed.ps_const_i |= ((1 << Vector4iCount) - 1) << StartRegister;
3746 state->changed.group |= NINE_STATE_PS_CONST;
3747 } else
3748 nine_context_set_pixel_shader_constant_i(This, StartRegister, pConstantData,
3749 sizeof(state->ps_const_i[0]) * Vector4iCount, Vector4iCount);
3750
3751 return D3D_OK;
3752 }
3753
3754 HRESULT NINE_WINAPI
3755 NineDevice9_GetPixelShaderConstantI( struct NineDevice9 *This,
3756 UINT StartRegister,
3757 int *pConstantData,
3758 UINT Vector4iCount )
3759 {
3760 const struct nine_state *state = &This->state;
3761 int i;
3762
3763 user_assert(StartRegister < NINE_MAX_CONST_I, D3DERR_INVALIDCALL);
3764 user_assert(StartRegister + Vector4iCount <= NINE_MAX_CONST_I, D3DERR_INVALIDCALL);
3765 user_assert(pConstantData, D3DERR_INVALIDCALL);
3766
3767 if (This->driver_caps.ps_integer) {
3768 memcpy(pConstantData,
3769 &state->ps_const_i[StartRegister][0],
3770 Vector4iCount * sizeof(state->ps_const_i[0]));
3771 } else {
3772 for (i = 0; i < Vector4iCount; i++) {
3773 pConstantData[4*i] = (int32_t) uif(state->ps_const_i[StartRegister+i][0]);
3774 pConstantData[4*i+1] = (int32_t) uif(state->ps_const_i[StartRegister+i][1]);
3775 pConstantData[4*i+2] = (int32_t) uif(state->ps_const_i[StartRegister+i][2]);
3776 pConstantData[4*i+3] = (int32_t) uif(state->ps_const_i[StartRegister+i][3]);
3777 }
3778 }
3779
3780 return D3D_OK;
3781 }
3782
3783 HRESULT NINE_WINAPI
3784 NineDevice9_SetPixelShaderConstantB( struct NineDevice9 *This,
3785 UINT StartRegister,
3786 const BOOL *pConstantData,
3787 UINT BoolCount )
3788 {
3789 struct nine_state *state = This->update;
3790 int i;
3791 uint32_t bool_true = This->driver_caps.ps_integer ? 0xFFFFFFFF : fui(1.0f);
3792
3793 DBG("This=%p StartRegister=%u pConstantData=%p BoolCount=%u\n",
3794 This, StartRegister, pConstantData, BoolCount);
3795
3796 user_assert(StartRegister < NINE_MAX_CONST_B, D3DERR_INVALIDCALL);
3797 user_assert(StartRegister + BoolCount <= NINE_MAX_CONST_B, D3DERR_INVALIDCALL);
3798 user_assert(pConstantData, D3DERR_INVALIDCALL);
3799
3800 if (!This->is_recording) {
3801 bool noChange = true;
3802 for (i = 0; i < BoolCount; i++) {
3803 if (!!state->ps_const_b[StartRegister + i] != !!pConstantData[i])
3804 noChange = false;
3805 }
3806 if (noChange)
3807 return D3D_OK;
3808 }
3809
3810 for (i = 0; i < BoolCount; i++)
3811 state->ps_const_b[StartRegister + i] = pConstantData[i] ? bool_true : 0;
3812
3813 if (unlikely(This->is_recording)) {
3814 state->changed.ps_const_b |= ((1 << BoolCount) - 1) << StartRegister;
3815 state->changed.group |= NINE_STATE_PS_CONST;
3816 } else
3817 nine_context_set_pixel_shader_constant_b(This, StartRegister, pConstantData,
3818 sizeof(BOOL) * BoolCount, BoolCount);
3819
3820 return D3D_OK;
3821 }
3822
3823 HRESULT NINE_WINAPI
3824 NineDevice9_GetPixelShaderConstantB( struct NineDevice9 *This,
3825 UINT StartRegister,
3826 BOOL *pConstantData,
3827 UINT BoolCount )
3828 {
3829 const struct nine_state *state = &This->state;
3830 int i;
3831
3832 user_assert(StartRegister < NINE_MAX_CONST_B, D3DERR_INVALIDCALL);
3833 user_assert(StartRegister + BoolCount <= NINE_MAX_CONST_B, D3DERR_INVALIDCALL);
3834 user_assert(pConstantData, D3DERR_INVALIDCALL);
3835
3836 for (i = 0; i < BoolCount; i++)
3837 pConstantData[i] = state->ps_const_b[StartRegister + i] ? TRUE : FALSE;
3838
3839 return D3D_OK;
3840 }
3841
3842 HRESULT NINE_WINAPI
3843 NineDevice9_DrawRectPatch( struct NineDevice9 *This,
3844 UINT Handle,
3845 const float *pNumSegs,
3846 const D3DRECTPATCH_INFO *pRectPatchInfo )
3847 {
3848 STUB(D3DERR_INVALIDCALL);
3849 }
3850
3851 HRESULT NINE_WINAPI
3852 NineDevice9_DrawTriPatch( struct NineDevice9 *This,
3853 UINT Handle,
3854 const float *pNumSegs,
3855 const D3DTRIPATCH_INFO *pTriPatchInfo )
3856 {
3857 STUB(D3DERR_INVALIDCALL);
3858 }
3859
3860 HRESULT NINE_WINAPI
3861 NineDevice9_DeletePatch( struct NineDevice9 *This,
3862 UINT Handle )
3863 {
3864 STUB(D3DERR_INVALIDCALL);
3865 }
3866
3867 HRESULT NINE_WINAPI
3868 NineDevice9_CreateQuery( struct NineDevice9 *This,
3869 D3DQUERYTYPE Type,
3870 IDirect3DQuery9 **ppQuery )
3871 {
3872 struct NineQuery9 *query;
3873 HRESULT hr;
3874
3875 DBG("This=%p Type=%d ppQuery=%p\n", This, Type, ppQuery);
3876
3877 hr = nine_is_query_supported(This->screen, Type);
3878 if (!ppQuery || hr != D3D_OK)
3879 return hr;
3880
3881 hr = NineQuery9_new(This, &query, Type);
3882 if (FAILED(hr))
3883 return hr;
3884 *ppQuery = (IDirect3DQuery9 *)query;
3885 return D3D_OK;
3886 }
3887
3888 IDirect3DDevice9Vtbl NineDevice9_vtable = {
3889 (void *)NineUnknown_QueryInterface,
3890 (void *)NineUnknown_AddRef,
3891 (void *)NineUnknown_Release,
3892 (void *)NineDevice9_TestCooperativeLevel,
3893 (void *)NineDevice9_GetAvailableTextureMem,
3894 (void *)NineDevice9_EvictManagedResources,
3895 (void *)NineDevice9_GetDirect3D,
3896 (void *)NineDevice9_GetDeviceCaps,
3897 (void *)NineDevice9_GetDisplayMode,
3898 (void *)NineDevice9_GetCreationParameters,
3899 (void *)NineDevice9_SetCursorProperties,
3900 (void *)NineDevice9_SetCursorPosition,
3901 (void *)NineDevice9_ShowCursor,
3902 (void *)NineDevice9_CreateAdditionalSwapChain,
3903 (void *)NineDevice9_GetSwapChain,
3904 (void *)NineDevice9_GetNumberOfSwapChains,
3905 (void *)NineDevice9_Reset,
3906 (void *)NineDevice9_Present,
3907 (void *)NineDevice9_GetBackBuffer,
3908 (void *)NineDevice9_GetRasterStatus,
3909 (void *)NineDevice9_SetDialogBoxMode,
3910 (void *)NineDevice9_SetGammaRamp,
3911 (void *)NineDevice9_GetGammaRamp,
3912 (void *)NineDevice9_CreateTexture,
3913 (void *)NineDevice9_CreateVolumeTexture,
3914 (void *)NineDevice9_CreateCubeTexture,
3915 (void *)NineDevice9_CreateVertexBuffer,
3916 (void *)NineDevice9_CreateIndexBuffer,
3917 (void *)NineDevice9_CreateRenderTarget,
3918 (void *)NineDevice9_CreateDepthStencilSurface,
3919 (void *)NineDevice9_UpdateSurface,
3920 (void *)NineDevice9_UpdateTexture,
3921 (void *)NineDevice9_GetRenderTargetData,
3922 (void *)NineDevice9_GetFrontBufferData,
3923 (void *)NineDevice9_StretchRect,
3924 (void *)NineDevice9_ColorFill,
3925 (void *)NineDevice9_CreateOffscreenPlainSurface,
3926 (void *)NineDevice9_SetRenderTarget,
3927 (void *)NineDevice9_GetRenderTarget,
3928 (void *)NineDevice9_SetDepthStencilSurface,
3929 (void *)NineDevice9_GetDepthStencilSurface,
3930 (void *)NineDevice9_BeginScene,
3931 (void *)NineDevice9_EndScene,
3932 (void *)NineDevice9_Clear,
3933 (void *)NineDevice9_SetTransform,
3934 (void *)NineDevice9_GetTransform,
3935 (void *)NineDevice9_MultiplyTransform,
3936 (void *)NineDevice9_SetViewport,
3937 (void *)NineDevice9_GetViewport,
3938 (void *)NineDevice9_SetMaterial,
3939 (void *)NineDevice9_GetMaterial,
3940 (void *)NineDevice9_SetLight,
3941 (void *)NineDevice9_GetLight,
3942 (void *)NineDevice9_LightEnable,
3943 (void *)NineDevice9_GetLightEnable,
3944 (void *)NineDevice9_SetClipPlane,
3945 (void *)NineDevice9_GetClipPlane,
3946 (void *)NineDevice9_SetRenderState,
3947 (void *)NineDevice9_GetRenderState,
3948 (void *)NineDevice9_CreateStateBlock,
3949 (void *)NineDevice9_BeginStateBlock,
3950 (void *)NineDevice9_EndStateBlock,
3951 (void *)NineDevice9_SetClipStatus,
3952 (void *)NineDevice9_GetClipStatus,
3953 (void *)NineDevice9_GetTexture,
3954 (void *)NineDevice9_SetTexture,
3955 (void *)NineDevice9_GetTextureStageState,
3956 (void *)NineDevice9_SetTextureStageState,
3957 (void *)NineDevice9_GetSamplerState,
3958 (void *)NineDevice9_SetSamplerState,
3959 (void *)NineDevice9_ValidateDevice,
3960 (void *)NineDevice9_SetPaletteEntries,
3961 (void *)NineDevice9_GetPaletteEntries,
3962 (void *)NineDevice9_SetCurrentTexturePalette,
3963 (void *)NineDevice9_GetCurrentTexturePalette,
3964 (void *)NineDevice9_SetScissorRect,
3965 (void *)NineDevice9_GetScissorRect,
3966 (void *)NineDevice9_SetSoftwareVertexProcessing,
3967 (void *)NineDevice9_GetSoftwareVertexProcessing,
3968 (void *)NineDevice9_SetNPatchMode,
3969 (void *)NineDevice9_GetNPatchMode,
3970 (void *)NineDevice9_DrawPrimitive,
3971 (void *)NineDevice9_DrawIndexedPrimitive,
3972 (void *)NineDevice9_DrawPrimitiveUP,
3973 (void *)NineDevice9_DrawIndexedPrimitiveUP,
3974 (void *)NineDevice9_ProcessVertices,
3975 (void *)NineDevice9_CreateVertexDeclaration,
3976 (void *)NineDevice9_SetVertexDeclaration,
3977 (void *)NineDevice9_GetVertexDeclaration,
3978 (void *)NineDevice9_SetFVF,
3979 (void *)NineDevice9_GetFVF,
3980 (void *)NineDevice9_CreateVertexShader,
3981 (void *)NineDevice9_SetVertexShader,
3982 (void *)NineDevice9_GetVertexShader,
3983 (void *)NineDevice9_SetVertexShaderConstantF,
3984 (void *)NineDevice9_GetVertexShaderConstantF,
3985 (void *)NineDevice9_SetVertexShaderConstantI,
3986 (void *)NineDevice9_GetVertexShaderConstantI,
3987 (void *)NineDevice9_SetVertexShaderConstantB,
3988 (void *)NineDevice9_GetVertexShaderConstantB,
3989 (void *)NineDevice9_SetStreamSource,
3990 (void *)NineDevice9_GetStreamSource,
3991 (void *)NineDevice9_SetStreamSourceFreq,
3992 (void *)NineDevice9_GetStreamSourceFreq,
3993 (void *)NineDevice9_SetIndices,
3994 (void *)NineDevice9_GetIndices,
3995 (void *)NineDevice9_CreatePixelShader,
3996 (void *)NineDevice9_SetPixelShader,
3997 (void *)NineDevice9_GetPixelShader,
3998 (void *)NineDevice9_SetPixelShaderConstantF,
3999 (void *)NineDevice9_GetPixelShaderConstantF,
4000 (void *)NineDevice9_SetPixelShaderConstantI,
4001 (void *)NineDevice9_GetPixelShaderConstantI,
4002 (void *)NineDevice9_SetPixelShaderConstantB,
4003 (void *)NineDevice9_GetPixelShaderConstantB,
4004 (void *)NineDevice9_DrawRectPatch,
4005 (void *)NineDevice9_DrawTriPatch,
4006 (void *)NineDevice9_DeletePatch,
4007 (void *)NineDevice9_CreateQuery
4008 };
4009
4010 static const GUID *NineDevice9_IIDs[] = {
4011 &IID_IDirect3DDevice9,
4012 &IID_IUnknown,
4013 NULL
4014 };
4015
4016 HRESULT
4017 NineDevice9_new( struct pipe_screen *pScreen,
4018 D3DDEVICE_CREATION_PARAMETERS *pCreationParameters,
4019 D3DCAPS9 *pCaps,
4020 D3DPRESENT_PARAMETERS *pPresentationParameters,
4021 IDirect3D9 *pD3D9,
4022 ID3DPresentGroup *pPresentationGroup,
4023 struct d3dadapter9_context *pCTX,
4024 boolean ex,
4025 D3DDISPLAYMODEEX *pFullscreenDisplayMode,
4026 struct NineDevice9 **ppOut,
4027 int minorVersionNum )
4028 {
4029 BOOL lock;
4030 lock = !!(pCreationParameters->BehaviorFlags & D3DCREATE_MULTITHREADED);
4031
4032 NINE_NEW(Device9, ppOut, lock, /* args */
4033 pScreen, pCreationParameters, pCaps,
4034 pPresentationParameters, pD3D9, pPresentationGroup, pCTX,
4035 ex, pFullscreenDisplayMode, minorVersionNum );
4036 }