VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/wined3d_private.h@ 37608

最後變更 在這個檔案從37608是 37550,由 vboxsync 提交於 13 年 前

wddm/3d: fix random black lines with projected textures

  • 屬性 svn:eol-style 設為 native
檔案大小: 120.4 KB
 
1/*
2 * Direct3D wine internal private include file
3 *
4 * Copyright 2002-2003 The wine-d3d team
5 * Copyright 2002-2003 Raphael Junqueira
6 * Copyright 2002-2003, 2004 Jason Edmeades
7 * Copyright 2005 Oliver Stieber
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24/*
25 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
26 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
27 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
28 * a choice of LGPL license versions is made available with the language indicating
29 * that LGPLv2 or any later version may be used, or where a choice of which version
30 * of the LGPL is applied is otherwise unspecified.
31 */
32
33#ifndef __WINE_WINED3D_PRIVATE_H
34#define __WINE_WINED3D_PRIVATE_H
35
36#include <stdarg.h>
37#include <math.h>
38#include <limits.h>
39#define NONAMELESSUNION
40#define NONAMELESSSTRUCT
41#define COBJMACROS
42#ifndef VBOX_WINE_WITHOUT_LIBWINE
43#include "windef.h"
44#include "winbase.h"
45#include "winreg.h"
46#include "wingdi.h"
47#include "winuser.h"
48#else
49#include <windows.h>
50#endif
51#include "wine/debug.h"
52#include "wine/unicode.h"
53
54#ifndef VBOX_WINE_WITHOUT_LIBWINE
55#include "objbase.h"
56#endif
57#include "wine/wined3d.h"
58#include "wined3d_gl.h"
59#include "wine/list.h"
60#include "wine/rbtree.h"
61
62#ifdef VBOX_WITH_WDDM
63# include "vboxsharedrc.h"
64#endif
65
66/* Driver quirks */
67#define WINED3D_QUIRK_ARB_VS_OFFSET_LIMIT 0x00000001
68#define WINED3D_QUIRK_SET_TEXCOORD_W 0x00000002
69#define WINED3D_QUIRK_GLSL_CLIP_VARYING 0x00000004
70#define WINED3D_QUIRK_ALLOWS_SPECULAR_ALPHA 0x00000008
71#define WINED3D_QUIRK_NV_CLIP_BROKEN 0x00000010
72#define WINED3D_QUIRK_FBO_TEX_UPDATE 0x00000020
73#define WINED3D_QUIRK_FULLSIZE_BLIT 0x00000040
74
75/* Texture format fixups */
76
77enum fixup_channel_source
78{
79 CHANNEL_SOURCE_ZERO = 0,
80 CHANNEL_SOURCE_ONE = 1,
81 CHANNEL_SOURCE_X = 2,
82 CHANNEL_SOURCE_Y = 3,
83 CHANNEL_SOURCE_Z = 4,
84 CHANNEL_SOURCE_W = 5,
85 CHANNEL_SOURCE_COMPLEX0 = 6,
86 CHANNEL_SOURCE_COMPLEX1 = 7,
87};
88
89enum complex_fixup
90{
91 COMPLEX_FIXUP_NONE = 0,
92 COMPLEX_FIXUP_YUY2 = 1,
93 COMPLEX_FIXUP_UYVY = 2,
94 COMPLEX_FIXUP_YV12 = 3,
95 COMPLEX_FIXUP_P8 = 4,
96};
97
98#include <pshpack2.h>
99struct color_fixup_desc
100{
101 unsigned x_sign_fixup : 1;
102 unsigned x_source : 3;
103 unsigned y_sign_fixup : 1;
104 unsigned y_source : 3;
105 unsigned z_sign_fixup : 1;
106 unsigned z_source : 3;
107 unsigned w_sign_fixup : 1;
108 unsigned w_source : 3;
109};
110#include <poppack.h>
111
112static const struct color_fixup_desc COLOR_FIXUP_IDENTITY =
113 {0, CHANNEL_SOURCE_X, 0, CHANNEL_SOURCE_Y, 0, CHANNEL_SOURCE_Z, 0, CHANNEL_SOURCE_W};
114
115static inline struct color_fixup_desc create_color_fixup_desc(
116 int sign0, enum fixup_channel_source src0, int sign1, enum fixup_channel_source src1,
117 int sign2, enum fixup_channel_source src2, int sign3, enum fixup_channel_source src3)
118{
119 struct color_fixup_desc fixup =
120 {
121 sign0, src0,
122 sign1, src1,
123 sign2, src2,
124 sign3, src3,
125 };
126 return fixup;
127}
128
129static inline struct color_fixup_desc create_complex_fixup_desc(enum complex_fixup complex_fixup)
130{
131 struct color_fixup_desc fixup =
132 {
133 0, complex_fixup & (1 << 0) ? CHANNEL_SOURCE_COMPLEX1 : CHANNEL_SOURCE_COMPLEX0,
134 0, complex_fixup & (1 << 1) ? CHANNEL_SOURCE_COMPLEX1 : CHANNEL_SOURCE_COMPLEX0,
135 0, complex_fixup & (1 << 2) ? CHANNEL_SOURCE_COMPLEX1 : CHANNEL_SOURCE_COMPLEX0,
136 0, complex_fixup & (1 << 3) ? CHANNEL_SOURCE_COMPLEX1 : CHANNEL_SOURCE_COMPLEX0,
137 };
138 return fixup;
139}
140
141static inline BOOL is_identity_fixup(struct color_fixup_desc fixup)
142{
143 return !memcmp(&fixup, &COLOR_FIXUP_IDENTITY, sizeof(fixup));
144}
145
146static inline BOOL is_complex_fixup(struct color_fixup_desc fixup)
147{
148 return fixup.x_source == CHANNEL_SOURCE_COMPLEX0 || fixup.x_source == CHANNEL_SOURCE_COMPLEX1;
149}
150
151static inline enum complex_fixup get_complex_fixup(struct color_fixup_desc fixup)
152{
153 enum complex_fixup complex_fixup = 0;
154 if (fixup.x_source == CHANNEL_SOURCE_COMPLEX1) complex_fixup |= (1 << 0);
155 if (fixup.y_source == CHANNEL_SOURCE_COMPLEX1) complex_fixup |= (1 << 1);
156 if (fixup.z_source == CHANNEL_SOURCE_COMPLEX1) complex_fixup |= (1 << 2);
157 if (fixup.w_source == CHANNEL_SOURCE_COMPLEX1) complex_fixup |= (1 << 3);
158 return complex_fixup;
159}
160
161void *wined3d_rb_alloc(size_t size) DECLSPEC_HIDDEN;
162void *wined3d_rb_realloc(void *ptr, size_t size) DECLSPEC_HIDDEN;
163void wined3d_rb_free(void *ptr) DECLSPEC_HIDDEN;
164
165/* Device caps */
166#define MAX_PALETTES 65536
167#define MAX_STREAMS 16
168#define MAX_TEXTURES 8
169#define MAX_FRAGMENT_SAMPLERS 16
170#define MAX_VERTEX_SAMPLERS 4
171#define MAX_COMBINED_SAMPLERS (MAX_FRAGMENT_SAMPLERS + MAX_VERTEX_SAMPLERS)
172#define MAX_ACTIVE_LIGHTS 8
173#define MAX_CLIPPLANES WINED3DMAXUSERCLIPPLANES
174
175struct min_lookup
176{
177 GLenum mip[WINED3DTEXF_LINEAR + 1];
178};
179
180const struct min_lookup minMipLookup[WINED3DTEXF_LINEAR + 1] DECLSPEC_HIDDEN;
181const struct min_lookup minMipLookup_noFilter[WINED3DTEXF_LINEAR + 1] DECLSPEC_HIDDEN;
182const struct min_lookup minMipLookup_noMip[WINED3DTEXF_LINEAR + 1] DECLSPEC_HIDDEN;
183const GLenum magLookup[WINED3DTEXF_LINEAR + 1] DECLSPEC_HIDDEN;
184const GLenum magLookup_noFilter[WINED3DTEXF_LINEAR + 1] DECLSPEC_HIDDEN;
185
186static inline GLenum wined3d_gl_mag_filter(const GLenum mag_lookup[], WINED3DTEXTUREFILTERTYPE mag_filter)
187{
188 return mag_lookup[mag_filter];
189}
190
191static inline GLenum wined3d_gl_min_mip_filter(const struct min_lookup min_mip_lookup[],
192 WINED3DTEXTUREFILTERTYPE min_filter, WINED3DTEXTUREFILTERTYPE mip_filter)
193{
194 return min_mip_lookup[min_filter].mip[mip_filter];
195}
196
197/* float_16_to_32() and float_32_to_16() (see implementation in
198 * surface_base.c) convert 16 bit floats in the FLOAT16 data type
199 * to standard C floats and vice versa. They do not depend on the encoding
200 * of the C float, so they are platform independent, but slow. On x86 and
201 * other IEEE 754 compliant platforms the conversion can be accelerated by
202 * bit shifting the exponent and mantissa. There are also some SSE-based
203 * assembly routines out there.
204 *
205 * See GL_NV_half_float for a reference of the FLOAT16 / GL_HALF format
206 */
207static inline float float_16_to_32(const unsigned short *in) {
208 unsigned long fNaN = 0x7fc00000;
209 unsigned long fNegInf = 0xff800000;
210 unsigned long fInf = 0x7f800000;
211
212 const unsigned short s = ((*in) & 0x8000);
213 const unsigned short e = ((*in) & 0x7C00) >> 10;
214 const unsigned short m = (*in) & 0x3FF;
215 const float sgn = (s ? -1.0f : 1.0f);
216
217 if(e == 0) {
218 if(m == 0) return sgn * 0.0f; /* +0.0 or -0.0 */
219 else return sgn * pow(2, -14.0f) * ((float)m / 1024.0f);
220 } else if(e < 31) {
221 return sgn * pow(2, (float)e - 15.0f) * (1.0f + ((float)m / 1024.0f));
222 } else {
223 if(m == 0) return sgn>0? *(float*)(&fInf) : *(float*)(&fNegInf); //sgn / 0.0f; /* +INF / -INF */
224 else return *(float*)(&fNaN); //0.0f / 0.0f; /* NAN */
225 }
226}
227
228static inline float float_24_to_32(DWORD in)
229{
230 const float sgn = in & 0x800000 ? -1.0f : 1.0f;
231 const unsigned short e = (in & 0x780000) >> 19;
232 const unsigned short m = in & 0x7ffff;
233 unsigned long fNaN = 0x7fc00000;
234 unsigned long fNegInf = 0xff800000;
235 unsigned long fInf = 0x7f800000;
236
237 if (e == 0)
238 {
239 if (m == 0) return sgn * 0.0f; /* +0.0 or -0.0 */
240 else return sgn * pow(2, -6.0f) * ((float)m / 524288.0f);
241 }
242 else if (e < 15)
243 {
244 return sgn * pow(2, (float)e - 7.0f) * (1.0f + ((float)m / 524288.0f));
245 }
246 else
247 {
248 if (m == 0) return sgn>0? *(float*)(&fInf) : *(float*)(&fNegInf); //sgn / 0.0f; /* +INF / -INF */
249 else return *(float*)(&fNaN); //0.0f / 0.0f; /* NAN */
250 }
251}
252
253/**
254 * Settings
255 */
256#define VS_NONE 0
257#define VS_HW 1
258
259#define PS_NONE 0
260#define PS_HW 1
261
262#define VBO_NONE 0
263#define VBO_HW 1
264
265#define ORM_BACKBUFFER 0
266#define ORM_FBO 1
267
268#define SHADER_ARB 1
269#define SHADER_GLSL 2
270#define SHADER_ATI 3
271#define SHADER_NONE 4
272
273#define RTL_DISABLE -1
274#define RTL_READDRAW 1
275#define RTL_READTEX 2
276
277#define PCI_VENDOR_NONE 0xffff /* e.g. 0x8086 for Intel and 0x10de for Nvidia */
278#define PCI_DEVICE_NONE 0xffff /* e.g. 0x14f for a Geforce6200 */
279
280/* NOTE: When adding fields to this structure, make sure to update the default
281 * values in wined3d_main.c as well. */
282typedef struct wined3d_settings_s {
283/* vertex and pixel shader modes */
284 int vs_mode;
285 int ps_mode;
286/* Ideally, we don't want the user to have to request GLSL. If the hardware supports GLSL,
287 we should use it. However, until it's fully implemented, we'll leave it as a registry
288 setting for developers. */
289 BOOL glslRequested;
290 int offscreen_rendering_mode;
291 int rendertargetlock_mode;
292 unsigned short pci_vendor_id;
293 unsigned short pci_device_id;
294/* Memory tracking and object counting */
295 unsigned int emulated_textureram;
296 char *logo;
297 int allow_multisampling;
298 BOOL strict_draw_ordering;
299} wined3d_settings_t;
300
301extern wined3d_settings_t wined3d_settings DECLSPEC_HIDDEN;
302
303typedef enum _WINED3DSAMPLER_TEXTURE_TYPE
304{
305 WINED3DSTT_UNKNOWN = 0,
306 WINED3DSTT_1D = 1,
307 WINED3DSTT_2D = 2,
308 WINED3DSTT_CUBE = 3,
309 WINED3DSTT_VOLUME = 4,
310} WINED3DSAMPLER_TEXTURE_TYPE;
311
312typedef enum _WINED3DSHADER_PARAM_REGISTER_TYPE
313{
314 WINED3DSPR_TEMP = 0,
315 WINED3DSPR_INPUT = 1,
316 WINED3DSPR_CONST = 2,
317 WINED3DSPR_ADDR = 3,
318 WINED3DSPR_TEXTURE = 3,
319 WINED3DSPR_RASTOUT = 4,
320 WINED3DSPR_ATTROUT = 5,
321 WINED3DSPR_TEXCRDOUT = 6,
322 WINED3DSPR_OUTPUT = 6,
323 WINED3DSPR_CONSTINT = 7,
324 WINED3DSPR_COLOROUT = 8,
325 WINED3DSPR_DEPTHOUT = 9,
326 WINED3DSPR_SAMPLER = 10,
327 WINED3DSPR_CONST2 = 11,
328 WINED3DSPR_CONST3 = 12,
329 WINED3DSPR_CONST4 = 13,
330 WINED3DSPR_CONSTBOOL = 14,
331 WINED3DSPR_LOOP = 15,
332 WINED3DSPR_TEMPFLOAT16 = 16,
333 WINED3DSPR_MISCTYPE = 17,
334 WINED3DSPR_LABEL = 18,
335 WINED3DSPR_PREDICATE = 19,
336 WINED3DSPR_IMMCONST,
337 WINED3DSPR_CONSTBUFFER,
338} WINED3DSHADER_PARAM_REGISTER_TYPE;
339
340enum wined3d_immconst_type
341{
342 WINED3D_IMMCONST_FLOAT,
343 WINED3D_IMMCONST_FLOAT4,
344};
345
346#define WINED3DSP_NOSWIZZLE (0 | (1 << 2) | (2 << 4) | (3 << 6))
347
348typedef enum _WINED3DSHADER_PARAM_SRCMOD_TYPE
349{
350 WINED3DSPSM_NONE = 0,
351 WINED3DSPSM_NEG = 1,
352 WINED3DSPSM_BIAS = 2,
353 WINED3DSPSM_BIASNEG = 3,
354 WINED3DSPSM_SIGN = 4,
355 WINED3DSPSM_SIGNNEG = 5,
356 WINED3DSPSM_COMP = 6,
357 WINED3DSPSM_X2 = 7,
358 WINED3DSPSM_X2NEG = 8,
359 WINED3DSPSM_DZ = 9,
360 WINED3DSPSM_DW = 10,
361 WINED3DSPSM_ABS = 11,
362 WINED3DSPSM_ABSNEG = 12,
363 WINED3DSPSM_NOT = 13,
364} WINED3DSHADER_PARAM_SRCMOD_TYPE;
365
366#define WINED3DSP_WRITEMASK_0 0x1 /* .x r */
367#define WINED3DSP_WRITEMASK_1 0x2 /* .y g */
368#define WINED3DSP_WRITEMASK_2 0x4 /* .z b */
369#define WINED3DSP_WRITEMASK_3 0x8 /* .w a */
370#define WINED3DSP_WRITEMASK_ALL 0xf /* all */
371
372typedef enum _WINED3DSHADER_PARAM_DSTMOD_TYPE
373{
374 WINED3DSPDM_NONE = 0,
375 WINED3DSPDM_SATURATE = 1,
376 WINED3DSPDM_PARTIALPRECISION = 2,
377 WINED3DSPDM_MSAMPCENTROID = 4,
378} WINED3DSHADER_PARAM_DSTMOD_TYPE;
379
380/* Undocumented opcode control to identify projective texture lookups in ps 2.0 and later */
381#define WINED3DSI_TEXLD_PROJECT 1
382#define WINED3DSI_TEXLD_BIAS 2
383
384typedef enum COMPARISON_TYPE
385{
386 COMPARISON_GT = 1,
387 COMPARISON_EQ = 2,
388 COMPARISON_GE = 3,
389 COMPARISON_LT = 4,
390 COMPARISON_NE = 5,
391 COMPARISON_LE = 6,
392} COMPARISON_TYPE;
393
394#define WINED3D_SM1_VS 0xfffe
395#define WINED3D_SM1_PS 0xffff
396#define WINED3D_SM4_PS 0x0000
397#define WINED3D_SM4_VS 0x0001
398#define WINED3D_SM4_GS 0x0002
399
400/* Shader version tokens, and shader end tokens */
401#define WINED3DPS_VERSION(major, minor) ((WINED3D_SM1_PS << 16) | ((major) << 8) | (minor))
402#define WINED3DVS_VERSION(major, minor) ((WINED3D_SM1_VS << 16) | ((major) << 8) | (minor))
403
404/* Shader backends */
405
406/* TODO: Make this dynamic, based on shader limits ? */
407#define MAX_ATTRIBS 16
408#define MAX_REG_ADDR 1
409#define MAX_REG_TEMP 32
410#define MAX_REG_TEXCRD 8
411#define MAX_REG_INPUT 12
412#define MAX_REG_OUTPUT 12
413#define MAX_CONST_I 16
414#define MAX_CONST_B 16
415
416/* FIXME: This needs to go up to 2048 for
417 * Shader model 3 according to msdn (and for software shaders) */
418#define MAX_LABELS 16
419
420#define SHADER_PGMSIZE 65535
421
422struct wined3d_shader_buffer
423{
424 char *buffer;
425 unsigned int bsize;
426 unsigned int lineNo;
427 BOOL newline;
428};
429
430enum WINED3D_SHADER_INSTRUCTION_HANDLER
431{
432 WINED3DSIH_ABS,
433 WINED3DSIH_ADD,
434 WINED3DSIH_BEM,
435 WINED3DSIH_BREAK,
436 WINED3DSIH_BREAKC,
437 WINED3DSIH_BREAKP,
438 WINED3DSIH_CALL,
439 WINED3DSIH_CALLNZ,
440 WINED3DSIH_CMP,
441 WINED3DSIH_CND,
442 WINED3DSIH_CRS,
443 WINED3DSIH_CUT,
444 WINED3DSIH_DCL,
445 WINED3DSIH_DEF,
446 WINED3DSIH_DEFB,
447 WINED3DSIH_DEFI,
448 WINED3DSIH_DP2ADD,
449 WINED3DSIH_DP3,
450 WINED3DSIH_DP4,
451 WINED3DSIH_DST,
452 WINED3DSIH_DSX,
453 WINED3DSIH_DSY,
454 WINED3DSIH_ELSE,
455 WINED3DSIH_EMIT,
456 WINED3DSIH_ENDIF,
457 WINED3DSIH_ENDLOOP,
458 WINED3DSIH_ENDREP,
459 WINED3DSIH_EXP,
460 WINED3DSIH_EXPP,
461 WINED3DSIH_FRC,
462 WINED3DSIH_IADD,
463 WINED3DSIH_IF,
464 WINED3DSIH_IFC,
465 WINED3DSIH_IGE,
466 WINED3DSIH_LABEL,
467 WINED3DSIH_LIT,
468 WINED3DSIH_LOG,
469 WINED3DSIH_LOGP,
470 WINED3DSIH_LOOP,
471 WINED3DSIH_LRP,
472 WINED3DSIH_LT,
473 WINED3DSIH_M3x2,
474 WINED3DSIH_M3x3,
475 WINED3DSIH_M3x4,
476 WINED3DSIH_M4x3,
477 WINED3DSIH_M4x4,
478 WINED3DSIH_MAD,
479 WINED3DSIH_MAX,
480 WINED3DSIH_MIN,
481 WINED3DSIH_MOV,
482 WINED3DSIH_MOVA,
483 WINED3DSIH_MUL,
484 WINED3DSIH_NOP,
485 WINED3DSIH_NRM,
486 WINED3DSIH_PHASE,
487 WINED3DSIH_POW,
488 WINED3DSIH_RCP,
489 WINED3DSIH_REP,
490 WINED3DSIH_RET,
491 WINED3DSIH_RSQ,
492 WINED3DSIH_SETP,
493 WINED3DSIH_SGE,
494 WINED3DSIH_SGN,
495 WINED3DSIH_SINCOS,
496 WINED3DSIH_SLT,
497 WINED3DSIH_SUB,
498 WINED3DSIH_TEX,
499 WINED3DSIH_TEXBEM,
500 WINED3DSIH_TEXBEML,
501 WINED3DSIH_TEXCOORD,
502 WINED3DSIH_TEXDEPTH,
503 WINED3DSIH_TEXDP3,
504 WINED3DSIH_TEXDP3TEX,
505 WINED3DSIH_TEXKILL,
506 WINED3DSIH_TEXLDD,
507 WINED3DSIH_TEXLDL,
508 WINED3DSIH_TEXM3x2DEPTH,
509 WINED3DSIH_TEXM3x2PAD,
510 WINED3DSIH_TEXM3x2TEX,
511 WINED3DSIH_TEXM3x3,
512 WINED3DSIH_TEXM3x3DIFF,
513 WINED3DSIH_TEXM3x3PAD,
514 WINED3DSIH_TEXM3x3SPEC,
515 WINED3DSIH_TEXM3x3TEX,
516 WINED3DSIH_TEXM3x3VSPEC,
517 WINED3DSIH_TEXREG2AR,
518 WINED3DSIH_TEXREG2GB,
519 WINED3DSIH_TEXREG2RGB,
520 WINED3DSIH_TABLE_SIZE
521};
522
523enum wined3d_shader_type
524{
525 WINED3D_SHADER_TYPE_PIXEL,
526 WINED3D_SHADER_TYPE_VERTEX,
527 WINED3D_SHADER_TYPE_GEOMETRY,
528};
529
530struct wined3d_shader_version
531{
532 enum wined3d_shader_type type;
533 BYTE major;
534 BYTE minor;
535};
536
537#define WINED3D_SHADER_VERSION(major, minor) (((major) << 8) | (minor))
538
539typedef struct shader_reg_maps
540{
541 struct wined3d_shader_version shader_version;
542 BYTE texcoord; /* MAX_REG_TEXCRD, 8 */
543 BYTE address; /* MAX_REG_ADDR, 1 */
544 WORD labels; /* MAX_LABELS, 16 */
545 DWORD temporary; /* MAX_REG_TEMP, 32 */
546 DWORD *constf; /* pixel, vertex */
547 DWORD texcoord_mask[MAX_REG_TEXCRD]; /* vertex < 3.0 */
548 WORD input_registers; /* max(MAX_REG_INPUT, MAX_ATTRIBS), 16 */
549 WORD output_registers; /* MAX_REG_OUTPUT, 12 */
550 WORD integer_constants; /* MAX_CONST_I, 16 */
551 WORD boolean_constants; /* MAX_CONST_B, 16 */
552 WORD local_int_consts; /* MAX_CONST_I, 16 */
553 WORD local_bool_consts; /* MAX_CONST_B, 16 */
554
555 WINED3DSAMPLER_TEXTURE_TYPE sampler_type[max(MAX_FRAGMENT_SAMPLERS, MAX_VERTEX_SAMPLERS)];
556 BYTE bumpmat; /* MAX_TEXTURES, 8 */
557 BYTE luminanceparams; /* MAX_TEXTURES, 8 */
558
559 WORD usesnrm : 1;
560 WORD vpos : 1;
561 WORD usesdsx : 1;
562 WORD usesdsy : 1;
563 WORD usestexldd : 1;
564 WORD usesmova : 1;
565 WORD usesfacing : 1;
566 WORD usesrelconstF : 1;
567 WORD fog : 1;
568 WORD usestexldl : 1;
569 WORD usesifc : 1;
570 WORD usescall : 1;
571 WORD padding : 4;
572
573 /* Whether or not loops are used in this shader, and nesting depth */
574 unsigned loop_depth;
575 unsigned highest_render_target;
576
577} shader_reg_maps;
578
579struct wined3d_shader_context
580{
581 IWineD3DBaseShader *shader;
582 const struct wined3d_gl_info *gl_info;
583 const struct shader_reg_maps *reg_maps;
584 struct wined3d_shader_buffer *buffer;
585 void *backend_data;
586};
587
588struct wined3d_shader_register
589{
590 WINED3DSHADER_PARAM_REGISTER_TYPE type;
591 UINT idx;
592 UINT array_idx;
593 const struct wined3d_shader_src_param *rel_addr;
594 enum wined3d_immconst_type immconst_type;
595 DWORD immconst_data[4];
596};
597
598struct wined3d_shader_dst_param
599{
600 struct wined3d_shader_register reg;
601 DWORD write_mask;
602 DWORD modifiers;
603 DWORD shift;
604};
605
606struct wined3d_shader_src_param
607{
608 struct wined3d_shader_register reg;
609 DWORD swizzle;
610 DWORD modifiers;
611};
612
613struct wined3d_shader_instruction
614{
615 const struct wined3d_shader_context *ctx;
616 enum WINED3D_SHADER_INSTRUCTION_HANDLER handler_idx;
617 DWORD flags;
618 BOOL coissue;
619 DWORD predicate;
620 UINT dst_count;
621 const struct wined3d_shader_dst_param *dst;
622 UINT src_count;
623 const struct wined3d_shader_src_param *src;
624};
625
626struct wined3d_shader_semantic
627{
628 WINED3DDECLUSAGE usage;
629 UINT usage_idx;
630 WINED3DSAMPLER_TEXTURE_TYPE sampler_type;
631 struct wined3d_shader_dst_param reg;
632};
633
634struct wined3d_shader_attribute
635{
636 WINED3DDECLUSAGE usage;
637 UINT usage_idx;
638};
639
640struct wined3d_shader_loop_control
641{
642 unsigned int count;
643 unsigned int start;
644 int step;
645};
646
647struct wined3d_shader_frontend
648{
649 void *(*shader_init)(const DWORD *ptr, const struct wined3d_shader_signature *output_signature);
650 void (*shader_free)(void *data);
651 void (*shader_read_header)(void *data, const DWORD **ptr, struct wined3d_shader_version *shader_version);
652 void (*shader_read_opcode)(void *data, const DWORD **ptr, struct wined3d_shader_instruction *ins, UINT *param_size);
653 void (*shader_read_src_param)(void *data, const DWORD **ptr, struct wined3d_shader_src_param *src_param,
654 struct wined3d_shader_src_param *src_rel_addr);
655 void (*shader_read_dst_param)(void *data, const DWORD **ptr, struct wined3d_shader_dst_param *dst_param,
656 struct wined3d_shader_src_param *dst_rel_addr);
657 void (*shader_read_semantic)(const DWORD **ptr, struct wined3d_shader_semantic *semantic);
658 void (*shader_read_comment)(const DWORD **ptr, const char **comment, UINT *comment_size);
659 BOOL (*shader_is_end)(void *data, const DWORD **ptr);
660};
661
662extern const struct wined3d_shader_frontend sm1_shader_frontend DECLSPEC_HIDDEN;
663extern const struct wined3d_shader_frontend sm4_shader_frontend DECLSPEC_HIDDEN;
664
665typedef void (*SHADER_HANDLER)(const struct wined3d_shader_instruction *);
666
667struct shader_caps {
668 DWORD VertexShaderVersion;
669 DWORD MaxVertexShaderConst;
670
671 DWORD PixelShaderVersion;
672 float PixelShader1xMaxValue;
673 DWORD MaxPixelShaderConst;
674
675 WINED3DVSHADERCAPS2_0 VS20Caps;
676 WINED3DPSHADERCAPS2_0 PS20Caps;
677
678 DWORD MaxVShaderInstructionsExecuted;
679 DWORD MaxPShaderInstructionsExecuted;
680 DWORD MaxVertexShader30InstructionSlots;
681 DWORD MaxPixelShader30InstructionSlots;
682
683 BOOL VSClipping;
684};
685
686enum tex_types
687{
688 tex_1d = 0,
689 tex_2d = 1,
690 tex_3d = 2,
691 tex_cube = 3,
692 tex_rect = 4,
693 tex_type_count = 5,
694};
695
696enum vertexprocessing_mode {
697 fixedfunction,
698 vertexshader,
699 pretransformed
700};
701
702#define WINED3D_CONST_NUM_UNUSED ~0U
703
704enum fogmode {
705 FOG_OFF,
706 FOG_LINEAR,
707 FOG_EXP,
708 FOG_EXP2
709};
710
711struct wined3d_context;
712
713#define WINED3D_PSARGS_PROJECTED (1<<3)
714#define WINED3D_PSARGS_TEXTRANSFORM_SHIFT 4
715#define WINED3D_PSARGS_TEXTRANSFORM_MASK 0xF
716
717/* Stateblock dependent parameters which have to be hardcoded
718 * into the shader code
719 */
720struct ps_compile_args {
721 struct color_fixup_desc color_fixup[MAX_FRAGMENT_SAMPLERS];
722 enum vertexprocessing_mode vp_mode;
723 enum fogmode fog;
724 /* Projected textures(ps 1.0-1.3) */
725 WORD tex_transform;
726 /* Texture types(2D, Cube, 3D) in ps 1.x */
727 WORD srgb_correction;
728 WORD np2_fixup;
729 /* Bitmap for NP2 texcoord fixups (16 samplers max currently).
730 D3D9 has a limit of 16 samplers and the fixup is superfluous
731 in D3D10 (unconditional NP2 support mandatory). */
732 WORD t_mirror;
733};
734
735enum fog_src_type {
736 VS_FOG_Z = 0,
737 VS_FOG_COORD = 1
738};
739
740struct vs_compile_args {
741 BYTE fog_src;
742 BYTE clip_enabled;
743 WORD swizzle_map; /* MAX_ATTRIBS, 16 */
744};
745
746typedef struct {
747 void (*shader_handle_instruction)(const struct wined3d_shader_instruction *);
748 void (*shader_select)(const struct wined3d_context *context, BOOL usePS, BOOL useVS);
749 void (*shader_select_depth_blt)(IWineD3DDevice *iface, enum tex_types tex_type);
750 void (*shader_deselect_depth_blt)(IWineD3DDevice *iface);
751 void (*shader_update_float_vertex_constants)(IWineD3DDevice *iface, UINT start, UINT count);
752 void (*shader_update_float_pixel_constants)(IWineD3DDevice *iface, UINT start, UINT count);
753 void (*shader_load_constants)(const struct wined3d_context *context, char usePS, char useVS);
754 void (*shader_load_np2fixup_constants)(IWineD3DDevice *iface, char usePS, char useVS);
755 void (*shader_destroy)(IWineD3DBaseShader *iface);
756 HRESULT (*shader_alloc_private)(IWineD3DDevice *iface);
757 void (*shader_free_private)(IWineD3DDevice *iface);
758 BOOL (*shader_dirtifyable_constants)(IWineD3DDevice *iface);
759 void (*shader_get_caps)(const struct wined3d_gl_info *gl_info, struct shader_caps *caps);
760 BOOL (*shader_color_fixup_supported)(struct color_fixup_desc fixup);
761 void (*shader_add_instruction_modifiers)(const struct wined3d_shader_instruction *ins);
762} shader_backend_t;
763
764extern const shader_backend_t glsl_shader_backend DECLSPEC_HIDDEN;
765extern const shader_backend_t arb_program_shader_backend DECLSPEC_HIDDEN;
766extern const shader_backend_t none_shader_backend DECLSPEC_HIDDEN;
767
768/* X11 locking */
769
770extern void (* CDECL wine_tsx11_lock_ptr)(void) DECLSPEC_HIDDEN;
771extern void (* CDECL wine_tsx11_unlock_ptr)(void) DECLSPEC_HIDDEN;
772
773/* As GLX relies on X, this is needed */
774extern int num_lock DECLSPEC_HIDDEN;
775
776#if 0
777#define ENTER_GL() ++num_lock; if (num_lock > 1) FIXME("Recursive use of GL lock to: %d\n", num_lock); wine_tsx11_lock_ptr()
778#define LEAVE_GL() if (num_lock != 1) FIXME("Recursive use of GL lock: %d\n", num_lock); --num_lock; wine_tsx11_unlock_ptr()
779#else
780#define ENTER_GL() wine_tsx11_lock_ptr()
781#define LEAVE_GL() wine_tsx11_unlock_ptr()
782#endif
783
784/*****************************************************************************
785 * Defines
786 */
787
788/* GL related defines */
789/* ------------------ */
790#define GL_EXTCALL(FuncName) (GLINFO_LOCATION.FuncName)
791
792#define D3DCOLOR_B_R(dw) (((dw) >> 16) & 0xFF)
793#define D3DCOLOR_B_G(dw) (((dw) >> 8) & 0xFF)
794#define D3DCOLOR_B_B(dw) (((dw) >> 0) & 0xFF)
795#define D3DCOLOR_B_A(dw) (((dw) >> 24) & 0xFF)
796
797#define D3DCOLOR_R(dw) (((float) (((dw) >> 16) & 0xFF)) / 255.0f)
798#define D3DCOLOR_G(dw) (((float) (((dw) >> 8) & 0xFF)) / 255.0f)
799#define D3DCOLOR_B(dw) (((float) (((dw) >> 0) & 0xFF)) / 255.0f)
800#define D3DCOLOR_A(dw) (((float) (((dw) >> 24) & 0xFF)) / 255.0f)
801
802#define D3DCOLORTOGLFLOAT4(dw, vec) do { \
803 (vec)[0] = D3DCOLOR_R(dw); \
804 (vec)[1] = D3DCOLOR_G(dw); \
805 (vec)[2] = D3DCOLOR_B(dw); \
806 (vec)[3] = D3DCOLOR_A(dw); \
807} while(0)
808
809/* DirectX Device Limits */
810/* --------------------- */
811#define MAX_MIP_LEVELS 32 /* Maximum number of mipmap levels. */
812#define HIGHEST_TRANSFORMSTATE WINED3DTS_WORLDMATRIX(255) /* Highest value in WINED3DTRANSFORMSTATETYPE */
813
814/* Checking of API calls */
815/* --------------------- */
816#ifndef WINE_NO_DEBUG_MSGS
817#define checkGLcall(A) \
818do { \
819 GLint err; \
820 if(!__WINE_IS_DEBUG_ON(_FIXME, __wine_dbch___default)) break; \
821 err = glGetError(); \
822 if (!pwglGetCurrentContext()) \
823 { \
824 ERR(">>>>>>>>>>>>>>>>> NULL ctx issuing %s @ %s / %d\n", \
825 A, __FILE__, __LINE__); \
826 break; \
827 } \
828 if (err == GL_NO_ERROR) { \
829 TRACE("%s call ok %s / %d\n", A, __FILE__, __LINE__); \
830 \
831 } else do { \
832 ERR(">>>>>>>>>>>>>>>>> %s (%#x) from %s @ %s / %d\n", \
833 debug_glerror(err), err, A, __FILE__, __LINE__); \
834 err = glGetError(); \
835 } while (err != GL_NO_ERROR); \
836} while(0)
837#else
838#define checkGLcall(A) do {} while(0)
839#endif
840
841/* Trace routines / diagnostics */
842/* ---------------------------- */
843
844/* Dump out a matrix and copy it */
845#define conv_mat(mat,gl_mat) \
846do { \
847 TRACE("%f %f %f %f\n", (mat)->u.s._11, (mat)->u.s._12, (mat)->u.s._13, (mat)->u.s._14); \
848 TRACE("%f %f %f %f\n", (mat)->u.s._21, (mat)->u.s._22, (mat)->u.s._23, (mat)->u.s._24); \
849 TRACE("%f %f %f %f\n", (mat)->u.s._31, (mat)->u.s._32, (mat)->u.s._33, (mat)->u.s._34); \
850 TRACE("%f %f %f %f\n", (mat)->u.s._41, (mat)->u.s._42, (mat)->u.s._43, (mat)->u.s._44); \
851 memcpy(gl_mat, (mat), 16 * sizeof(float)); \
852} while (0)
853
854/* Trace vector and strided data information */
855#define TRACE_STRIDED(si, name) do { if (si->use_map & (1 << name)) \
856 TRACE( #name "=(data:%p, stride:%d, format:%#x, vbo %d, stream %u)\n", \
857 si->elements[name].data, si->elements[name].stride, si->elements[name].format_desc->format, \
858 si->elements[name].buffer_object, si->elements[name].stream_idx); } while(0)
859
860/* Advance declaration of structures to satisfy compiler */
861typedef struct IWineD3DStateBlockImpl IWineD3DStateBlockImpl;
862typedef struct IWineD3DSurfaceImpl IWineD3DSurfaceImpl;
863typedef struct IWineD3DPaletteImpl IWineD3DPaletteImpl;
864typedef struct IWineD3DDeviceImpl IWineD3DDeviceImpl;
865typedef struct IWineD3DSwapChainImpl IWineD3DSwapChainImpl;
866
867/* Global variables */
868extern const float identity[16] DECLSPEC_HIDDEN;
869
870/*****************************************************************************
871 * Compilable extra diagnostics
872 */
873
874/* TODO: Confirm each of these works when wined3d move completed */
875#if 0 /* NOTE: Must be 0 in cvs */
876 /* To avoid having to get gigabytes of trace, the following can be compiled in, and at the start
877 of each frame, a check is made for the existence of C:\D3DTRACE, and if it exists d3d trace
878 is enabled, and if it doesn't exist it is disabled. */
879# define FRAME_DEBUGGING
880 /* Adding in the SINGLE_FRAME_DEBUGGING gives a trace of just what makes up a single frame, before
881 the file is deleted */
882# if 1 /* NOTE: Must be 1 in cvs, as this is mostly more useful than a trace from program start */
883# define SINGLE_FRAME_DEBUGGING
884# endif
885 /* The following, when enabled, lets you see the makeup of the frame, by drawprimitive calls.
886 It can only be enabled when FRAME_DEBUGGING is also enabled
887 The contents of the back buffer are written into /tmp/backbuffer_* after each primitive
888 array is drawn. */
889# if 0 /* NOTE: Must be 0 in cvs, as this give a lot of ppm files when compiled in */
890# define SHOW_FRAME_MAKEUP 1
891# endif
892 /* The following, when enabled, lets you see the makeup of the all the textures used during each
893 of the drawprimitive calls. It can only be enabled when SHOW_FRAME_MAKEUP is also enabled.
894 The contents of the textures assigned to each stage are written into
895 /tmp/texture_*_<Stage>.ppm after each primitive array is drawn. */
896# if 0 /* NOTE: Must be 0 in cvs, as this give a lot of ppm files when compiled in */
897# define SHOW_TEXTURE_MAKEUP 0
898# endif
899extern BOOL isOn;
900extern BOOL isDumpingFrames;
901extern LONG primCounter;
902#endif
903
904enum wined3d_ffp_idx
905{
906 WINED3D_FFP_POSITION = 0,
907 WINED3D_FFP_BLENDWEIGHT = 1,
908 WINED3D_FFP_BLENDINDICES = 2,
909 WINED3D_FFP_NORMAL = 3,
910 WINED3D_FFP_PSIZE = 4,
911 WINED3D_FFP_DIFFUSE = 5,
912 WINED3D_FFP_SPECULAR = 6,
913 WINED3D_FFP_TEXCOORD0 = 7,
914 WINED3D_FFP_TEXCOORD1 = 8,
915 WINED3D_FFP_TEXCOORD2 = 9,
916 WINED3D_FFP_TEXCOORD3 = 10,
917 WINED3D_FFP_TEXCOORD4 = 11,
918 WINED3D_FFP_TEXCOORD5 = 12,
919 WINED3D_FFP_TEXCOORD6 = 13,
920 WINED3D_FFP_TEXCOORD7 = 14,
921};
922
923enum wined3d_ffp_emit_idx
924{
925 WINED3D_FFP_EMIT_FLOAT1 = 0,
926 WINED3D_FFP_EMIT_FLOAT2 = 1,
927 WINED3D_FFP_EMIT_FLOAT3 = 2,
928 WINED3D_FFP_EMIT_FLOAT4 = 3,
929 WINED3D_FFP_EMIT_D3DCOLOR = 4,
930 WINED3D_FFP_EMIT_UBYTE4 = 5,
931 WINED3D_FFP_EMIT_SHORT2 = 6,
932 WINED3D_FFP_EMIT_SHORT4 = 7,
933 WINED3D_FFP_EMIT_UBYTE4N = 8,
934 WINED3D_FFP_EMIT_SHORT2N = 9,
935 WINED3D_FFP_EMIT_SHORT4N = 10,
936 WINED3D_FFP_EMIT_USHORT2N = 11,
937 WINED3D_FFP_EMIT_USHORT4N = 12,
938 WINED3D_FFP_EMIT_UDEC3 = 13,
939 WINED3D_FFP_EMIT_DEC3N = 14,
940 WINED3D_FFP_EMIT_FLOAT16_2 = 15,
941 WINED3D_FFP_EMIT_FLOAT16_4 = 16,
942 WINED3D_FFP_EMIT_COUNT = 17
943};
944
945struct wined3d_stream_info_element
946{
947 const struct wined3d_format_desc *format_desc;
948 GLsizei stride;
949 const BYTE *data;
950 UINT stream_idx;
951 GLuint buffer_object;
952};
953
954struct wined3d_stream_info
955{
956 struct wined3d_stream_info_element elements[MAX_ATTRIBS];
957 BOOL position_transformed;
958 WORD swizzle_map; /* MAX_ATTRIBS, 16 */
959 WORD use_map; /* MAX_ATTRIBS, 16 */
960};
961
962/*****************************************************************************
963 * Prototypes
964 */
965
966/* Routine common to the draw primitive and draw indexed primitive routines */
967void drawPrimitive(IWineD3DDevice *iface, UINT index_count,
968 UINT start_idx, UINT idxBytes, const void *idxData) DECLSPEC_HIDDEN;
969DWORD get_flexible_vertex_size(DWORD d3dvtVertexType) DECLSPEC_HIDDEN;
970
971typedef void (WINE_GLAPI *glAttribFunc)(const void *data);
972typedef void (WINE_GLAPI *glMultiTexCoordFunc)(GLenum unit, const void *data);
973extern glAttribFunc position_funcs[WINED3D_FFP_EMIT_COUNT] DECLSPEC_HIDDEN;
974extern glAttribFunc diffuse_funcs[WINED3D_FFP_EMIT_COUNT] DECLSPEC_HIDDEN;
975extern glAttribFunc specular_func_3ubv DECLSPEC_HIDDEN;
976extern glAttribFunc specular_funcs[WINED3D_FFP_EMIT_COUNT] DECLSPEC_HIDDEN;
977extern glAttribFunc normal_funcs[WINED3D_FFP_EMIT_COUNT] DECLSPEC_HIDDEN;
978extern glMultiTexCoordFunc multi_texcoord_funcs[WINED3D_FFP_EMIT_COUNT] DECLSPEC_HIDDEN;
979
980#define eps 1e-8
981
982#define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
983 (((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)
984
985/* Routines and structures related to state management */
986
987#define STATE_RENDER(a) (a)
988#define STATE_IS_RENDER(a) ((a) >= STATE_RENDER(1) && (a) <= STATE_RENDER(WINEHIGHEST_RENDER_STATE))
989
990#define STATE_TEXTURESTAGE(stage, num) (STATE_RENDER(WINEHIGHEST_RENDER_STATE) + 1 + (stage) * (WINED3D_HIGHEST_TEXTURE_STATE + 1) + (num))
991#define STATE_IS_TEXTURESTAGE(a) ((a) >= STATE_TEXTURESTAGE(0, 1) && (a) <= STATE_TEXTURESTAGE(MAX_TEXTURES - 1, WINED3D_HIGHEST_TEXTURE_STATE))
992
993/* + 1 because samplers start with 0 */
994#define STATE_SAMPLER(num) (STATE_TEXTURESTAGE(MAX_TEXTURES - 1, WINED3D_HIGHEST_TEXTURE_STATE) + 1 + (num))
995#define STATE_IS_SAMPLER(num) ((num) >= STATE_SAMPLER(0) && (num) <= STATE_SAMPLER(MAX_COMBINED_SAMPLERS - 1))
996
997#define STATE_PIXELSHADER (STATE_SAMPLER(MAX_COMBINED_SAMPLERS - 1) + 1)
998#define STATE_IS_PIXELSHADER(a) ((a) == STATE_PIXELSHADER)
999
1000#define STATE_TRANSFORM(a) (STATE_PIXELSHADER + (a))
1001#define STATE_IS_TRANSFORM(a) ((a) >= STATE_TRANSFORM(1) && (a) <= STATE_TRANSFORM(WINED3DTS_WORLDMATRIX(255)))
1002
1003#define STATE_STREAMSRC (STATE_TRANSFORM(WINED3DTS_WORLDMATRIX(255)) + 1)
1004#define STATE_IS_STREAMSRC(a) ((a) == STATE_STREAMSRC)
1005#define STATE_INDEXBUFFER (STATE_STREAMSRC + 1)
1006#define STATE_IS_INDEXBUFFER(a) ((a) == STATE_INDEXBUFFER)
1007
1008#define STATE_VDECL (STATE_INDEXBUFFER + 1)
1009#define STATE_IS_VDECL(a) ((a) == STATE_VDECL)
1010
1011#define STATE_VSHADER (STATE_VDECL + 1)
1012#define STATE_IS_VSHADER(a) ((a) == STATE_VSHADER)
1013
1014#define STATE_VIEWPORT (STATE_VSHADER + 1)
1015#define STATE_IS_VIEWPORT(a) ((a) == STATE_VIEWPORT)
1016
1017#define STATE_VERTEXSHADERCONSTANT (STATE_VIEWPORT + 1)
1018#define STATE_PIXELSHADERCONSTANT (STATE_VERTEXSHADERCONSTANT + 1)
1019#define STATE_IS_VERTEXSHADERCONSTANT(a) ((a) == STATE_VERTEXSHADERCONSTANT)
1020#define STATE_IS_PIXELSHADERCONSTANT(a) ((a) == STATE_PIXELSHADERCONSTANT)
1021
1022#define STATE_ACTIVELIGHT(a) (STATE_PIXELSHADERCONSTANT + (a) + 1)
1023#define STATE_IS_ACTIVELIGHT(a) ((a) >= STATE_ACTIVELIGHT(0) && (a) < STATE_ACTIVELIGHT(MAX_ACTIVE_LIGHTS))
1024
1025#define STATE_SCISSORRECT (STATE_ACTIVELIGHT(MAX_ACTIVE_LIGHTS - 1) + 1)
1026#define STATE_IS_SCISSORRECT(a) ((a) == STATE_SCISSORRECT)
1027
1028#define STATE_CLIPPLANE(a) (STATE_SCISSORRECT + 1 + (a))
1029#define STATE_IS_CLIPPLANE(a) ((a) >= STATE_CLIPPLANE(0) && (a) <= STATE_CLIPPLANE(MAX_CLIPPLANES - 1))
1030
1031#define STATE_MATERIAL (STATE_CLIPPLANE(MAX_CLIPPLANES))
1032#define STATE_IS_MATERIAL(a) ((a) == STATE_MATERIAL)
1033
1034#define STATE_FRONTFACE (STATE_MATERIAL + 1)
1035#define STATE_IS_FRONTFACE(a) ((a) == STATE_FRONTFACE)
1036
1037#define STATE_HIGHEST (STATE_FRONTFACE)
1038
1039enum fogsource {
1040 FOGSOURCE_FFP,
1041 FOGSOURCE_VS,
1042 FOGSOURCE_COORD,
1043};
1044
1045#define WINED3D_MAX_FBO_ENTRIES 64
1046
1047struct wined3d_occlusion_query
1048{
1049 struct list entry;
1050 GLuint id;
1051 struct wined3d_context *context;
1052};
1053
1054union wined3d_gl_query_object
1055{
1056 GLuint id;
1057 GLsync sync;
1058};
1059
1060struct wined3d_event_query
1061{
1062 struct list entry;
1063 union wined3d_gl_query_object object;
1064 struct wined3d_context *context;
1065};
1066
1067enum wined3d_event_query_result
1068{
1069 WINED3D_EVENT_QUERY_OK,
1070 WINED3D_EVENT_QUERY_WAITING,
1071 WINED3D_EVENT_QUERY_NOT_STARTED,
1072 WINED3D_EVENT_QUERY_WRONG_THREAD,
1073 WINED3D_EVENT_QUERY_ERROR
1074};
1075
1076void wined3d_event_query_destroy(struct wined3d_event_query *query) DECLSPEC_HIDDEN;
1077enum wined3d_event_query_result wined3d_event_query_test(struct wined3d_event_query *query, IWineD3DDeviceImpl *device) DECLSPEC_HIDDEN;
1078enum wined3d_event_query_result wined3d_event_query_finish(struct wined3d_event_query *query, IWineD3DDeviceImpl *device) DECLSPEC_HIDDEN;
1079void wined3d_event_query_issue(struct wined3d_event_query *query, IWineD3DDeviceImpl *device) DECLSPEC_HIDDEN;
1080HRESULT wined3d_event_query_supported(const struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
1081
1082struct wined3d_context
1083{
1084 const struct wined3d_gl_info *gl_info;
1085 /* State dirtification
1086 * dirtyArray is an array that contains markers for dirty states. numDirtyEntries states are dirty, their numbers are in indices
1087 * 0...numDirtyEntries - 1. isStateDirty is a redundant copy of the dirtyArray. Technically only one of them would be needed,
1088 * but with the help of both it is easy to find out if a state is dirty(just check the array index), and for applying dirty states
1089 * only numDirtyEntries array elements have to be checked, not STATE_HIGHEST states.
1090 */
1091 DWORD dirtyArray[STATE_HIGHEST + 1]; /* Won't get bigger than that, a state is never marked dirty 2 times */
1092 DWORD numDirtyEntries;
1093 DWORD isStateDirty[STATE_HIGHEST / (sizeof(DWORD) * CHAR_BIT) + 1]; /* Bitmap to find out quickly if a state is dirty */
1094
1095#ifdef VBOX_WITH_WDDM
1096 IWineD3DDeviceImpl *device;
1097 IWineD3DSwapChainImpl *currentSwapchain;
1098#else
1099 IWineD3DSwapChainImpl *swapchain;
1100#endif
1101
1102 IWineD3DSurface *current_rt;
1103 DWORD tid; /* Thread ID which owns this context at the moment */
1104
1105 /* Stores some information about the context state for optimization */
1106 WORD render_offscreen : 1;
1107 WORD draw_buffer_dirty : 1;
1108 WORD last_was_rhw : 1; /* true iff last draw_primitive was in xyzrhw mode */
1109 WORD last_was_pshader : 1;
1110 WORD last_was_vshader : 1;
1111 WORD namedArraysLoaded : 1;
1112 WORD numberedArraysLoaded : 1;
1113 WORD last_was_blit : 1;
1114 WORD last_was_ckey : 1;
1115 WORD fog_coord : 1;
1116 WORD fog_enabled : 1;
1117 WORD num_untracked_materials : 2; /* Max value 2 */
1118 WORD current : 1;
1119 WORD destroyed : 1;
1120 WORD valid : 1;
1121 BYTE texShaderBumpMap; /* MAX_TEXTURES, 8 */
1122 BYTE lastWasPow2Texture; /* MAX_TEXTURES, 8 */
1123 DWORD numbered_array_mask;
1124 GLenum tracking_parm; /* Which source is tracking current colour */
1125 GLenum untracked_materials[2];
1126 UINT blit_w, blit_h;
1127 enum fogsource fog_source;
1128
1129 char *vshader_const_dirty, *pshader_const_dirty;
1130
1131 /* The actual opengl context */
1132 UINT level;
1133 HGLRC restore_ctx;
1134 HDC restore_dc;
1135 HGLRC glCtx;
1136 HWND win_handle;
1137 HDC hdc;
1138 int pixel_format;
1139 GLint aux_buffers;
1140
1141 /* FBOs */
1142 UINT fbo_entry_count;
1143 struct list fbo_list;
1144 struct list fbo_destroy_list;
1145 struct fbo_entry *current_fbo;
1146 GLuint src_fbo;
1147 GLuint dst_fbo;
1148 GLuint fbo_read_binding;
1149 GLuint fbo_draw_binding;
1150 BOOL rebind_fbo;
1151
1152 /* Queries */
1153 GLuint *free_occlusion_queries;
1154 UINT free_occlusion_query_size;
1155 UINT free_occlusion_query_count;
1156 struct list occlusion_queries;
1157
1158 union wined3d_gl_query_object *free_event_queries;
1159 UINT free_event_query_size;
1160 UINT free_event_query_count;
1161 struct list event_queries;
1162
1163 /* Extension emulation */
1164 GLint gl_fog_source;
1165 GLfloat fog_coord_value;
1166 GLfloat color[4], fogstart, fogend, fogcolor[4];
1167 GLuint dummy_arbfp_prog;
1168};
1169
1170typedef void (*APPLYSTATEFUNC)(DWORD state, IWineD3DStateBlockImpl *stateblock, struct wined3d_context *ctx);
1171
1172struct StateEntry
1173{
1174 DWORD representative;
1175 APPLYSTATEFUNC apply;
1176};
1177
1178struct StateEntryTemplate
1179{
1180 DWORD state;
1181 struct StateEntry content;
1182 GL_SupportedExt extension;
1183};
1184
1185struct fragment_caps
1186{
1187 DWORD PrimitiveMiscCaps;
1188 DWORD TextureOpCaps;
1189 DWORD MaxTextureBlendStages;
1190 DWORD MaxSimultaneousTextures;
1191};
1192
1193struct fragment_pipeline
1194{
1195 void (*enable_extension)(IWineD3DDevice *iface, BOOL enable);
1196 void (*get_caps)(const struct wined3d_gl_info *gl_info, struct fragment_caps *caps);
1197 HRESULT (*alloc_private)(IWineD3DDevice *iface);
1198 void (*free_private)(IWineD3DDevice *iface);
1199 BOOL (*color_fixup_supported)(struct color_fixup_desc fixup);
1200 const struct StateEntryTemplate *states;
1201 BOOL ffp_proj_control;
1202};
1203
1204extern const struct StateEntryTemplate misc_state_template[] DECLSPEC_HIDDEN;
1205extern const struct StateEntryTemplate ffp_vertexstate_template[] DECLSPEC_HIDDEN;
1206extern const struct fragment_pipeline ffp_fragment_pipeline DECLSPEC_HIDDEN;
1207extern const struct fragment_pipeline atifs_fragment_pipeline DECLSPEC_HIDDEN;
1208extern const struct fragment_pipeline arbfp_fragment_pipeline DECLSPEC_HIDDEN;
1209extern const struct fragment_pipeline nvts_fragment_pipeline DECLSPEC_HIDDEN;
1210extern const struct fragment_pipeline nvrc_fragment_pipeline DECLSPEC_HIDDEN;
1211
1212/* "Base" state table */
1213HRESULT compile_state_table(struct StateEntry *StateTable, APPLYSTATEFUNC **dev_multistate_funcs,
1214 const struct wined3d_gl_info *gl_info, const struct StateEntryTemplate *vertex,
1215 const struct fragment_pipeline *fragment, const struct StateEntryTemplate *misc) DECLSPEC_HIDDEN;
1216
1217enum blit_operation
1218{
1219 BLIT_OP_BLIT,
1220 BLIT_OP_COLOR_FILL
1221};
1222
1223/* Shaders for color conversions in blits */
1224struct blit_shader
1225{
1226 HRESULT (*alloc_private)(IWineD3DDevice *iface);
1227 void (*free_private)(IWineD3DDevice *iface);
1228 HRESULT (*set_shader)(IWineD3DDevice *iface, IWineD3DSurfaceImpl *surface);
1229 void (*unset_shader)(IWineD3DDevice *iface);
1230 BOOL (*blit_supported)(const struct wined3d_gl_info *gl_info, enum blit_operation blit_op,
1231 const RECT *src_rect, DWORD src_usage, WINED3DPOOL src_pool, const struct wined3d_format_desc *src_format_desc,
1232 const RECT *dst_rect, DWORD dst_usage, WINED3DPOOL dst_pool, const struct wined3d_format_desc *dst_format_desc);
1233 HRESULT (*color_fill)(IWineD3DDeviceImpl *device, IWineD3DSurfaceImpl *dst_surface, const RECT *dst_rect, DWORD fill_color);
1234};
1235
1236extern const struct blit_shader ffp_blit DECLSPEC_HIDDEN;
1237extern const struct blit_shader arbfp_blit DECLSPEC_HIDDEN;
1238extern const struct blit_shader cpu_blit DECLSPEC_HIDDEN;
1239
1240/* Temporary blit_shader helper functions */
1241HRESULT arbfp_blit_surface(IWineD3DDeviceImpl *device, IWineD3DSurfaceImpl *src_surface, const RECT *src_rect,
1242 IWineD3DSurfaceImpl *dst_surface, const RECT *dst_rect_in, enum blit_operation blit_op,
1243 DWORD Filter) DECLSPEC_HIDDEN;
1244
1245typedef enum ContextUsage {
1246 CTXUSAGE_RESOURCELOAD = 1, /* Only loads textures: No State is applied */
1247 CTXUSAGE_DRAWPRIM = 2, /* OpenGL states are set up for blitting DirectDraw surfaces */
1248 CTXUSAGE_BLIT = 3, /* OpenGL states are set up 3D drawing */
1249 CTXUSAGE_CLEAR = 4, /* Drawable and states are set up for clearing */
1250} ContextUsage;
1251
1252struct wined3d_context *context_acquire(IWineD3DDeviceImpl *This,
1253 IWineD3DSurface *target, enum ContextUsage usage) DECLSPEC_HIDDEN;
1254void context_alloc_event_query(struct wined3d_context *context,
1255 struct wined3d_event_query *query) DECLSPEC_HIDDEN;
1256void context_alloc_occlusion_query(struct wined3d_context *context,
1257 struct wined3d_occlusion_query *query) DECLSPEC_HIDDEN;
1258void context_resource_released(IWineD3DDevice *iface,
1259 IWineD3DResource *resource, WINED3DRESOURCETYPE type) DECLSPEC_HIDDEN;
1260void context_bind_fbo(struct wined3d_context *context, GLenum target, GLuint *fbo) DECLSPEC_HIDDEN;
1261void context_attach_depth_stencil_fbo(struct wined3d_context *context,
1262 GLenum fbo_target, IWineD3DSurfaceImpl *depth_stencil, BOOL use_render_buffer) DECLSPEC_HIDDEN;
1263void context_attach_surface_fbo(const struct wined3d_context *context,
1264 GLenum fbo_target, DWORD idx, IWineD3DSurfaceImpl *surface) DECLSPEC_HIDDEN;
1265struct wined3d_context *context_create(IWineD3DSwapChainImpl *swapchain, IWineD3DSurfaceImpl *target,
1266 const struct wined3d_format_desc *ds_format_desc) DECLSPEC_HIDDEN;
1267struct IWineD3DDeviceImpl *context_get_device(const struct wined3d_context *context); DECLSPEC_HIDDEN;
1268#ifdef VBOX_WITH_WDDM
1269struct wined3d_context *context_find_create(IWineD3DDeviceImpl *device, IWineD3DSwapChainImpl *swapchain, IWineD3DSurfaceImpl *target,
1270 const struct wined3d_format_desc *ds_format_desc) DECLSPEC_HIDDEN;
1271BOOL context_acquire_context(struct wined3d_context * context, IWineD3DSurface *target, enum ContextUsage usage, BOOL bReValidate) DECLSPEC_HIDDEN;
1272#endif
1273void context_destroy(IWineD3DDeviceImpl *This, struct wined3d_context *context) DECLSPEC_HIDDEN;
1274void context_free_event_query(struct wined3d_event_query *query) DECLSPEC_HIDDEN;
1275void context_free_occlusion_query(struct wined3d_occlusion_query *query) DECLSPEC_HIDDEN;
1276struct wined3d_context *context_get_current(void) DECLSPEC_HIDDEN;
1277DWORD context_get_tls_idx(void) DECLSPEC_HIDDEN;
1278void context_release(struct wined3d_context *context) DECLSPEC_HIDDEN;
1279BOOL context_set_current(struct wined3d_context *ctx) DECLSPEC_HIDDEN;
1280void context_set_draw_buffer(struct wined3d_context *context, GLenum buffer) DECLSPEC_HIDDEN;
1281void context_set_tls_idx(DWORD idx) DECLSPEC_HIDDEN;
1282void context_surface_update(struct wined3d_context *context, IWineD3DSurfaceImpl *surface) DECLSPEC_HIDDEN;
1283
1284/* Macros for doing basic GPU detection based on opengl capabilities */
1285#define WINE_D3D6_CAPABLE(gl_info) (gl_info->supported[ARB_MULTITEXTURE])
1286#define WINE_D3D7_CAPABLE(gl_info) (gl_info->supported[ARB_TEXTURE_COMPRESSION] && gl_info->supported[ARB_TEXTURE_CUBE_MAP] && gl_info->supported[ARB_TEXTURE_ENV_DOT3])
1287#define WINE_D3D8_CAPABLE(gl_info) WINE_D3D7_CAPABLE(gl_info) && (gl_info->supported[ARB_MULTISAMPLE] && gl_info->supported[ARB_TEXTURE_BORDER_CLAMP])
1288#define WINE_D3D9_CAPABLE(gl_info) WINE_D3D8_CAPABLE(gl_info) && (gl_info->supported[ARB_FRAGMENT_PROGRAM] && gl_info->supported[ARB_VERTEX_SHADER])
1289#define WINE_D3D10_CAPABLE(gl_info) WINE_D3D9_CAPABLE(gl_info) && (gl_info->supported[EXT_GPU_SHADER4])
1290
1291/*****************************************************************************
1292 * Internal representation of a light
1293 */
1294struct wined3d_light_info
1295{
1296 WINED3DLIGHT OriginalParms; /* Note D3D8LIGHT == D3D9LIGHT */
1297 DWORD OriginalIndex;
1298 LONG glIndex;
1299 BOOL enabled;
1300
1301 /* Converted parms to speed up swapping lights */
1302 float lightPosn[4];
1303 float lightDirn[4];
1304 float exponent;
1305 float cutoff;
1306
1307 struct list entry;
1308};
1309
1310/* The default light parameters */
1311extern const WINED3DLIGHT WINED3D_default_light DECLSPEC_HIDDEN;
1312
1313typedef struct WineD3D_PixelFormat
1314{
1315 int iPixelFormat; /* WGL pixel format */
1316 int iPixelType; /* WGL pixel type e.g. WGL_TYPE_RGBA_ARB, WGL_TYPE_RGBA_FLOAT_ARB or WGL_TYPE_COLORINDEX_ARB */
1317 int redSize, greenSize, blueSize, alphaSize, colorSize;
1318 int depthSize, stencilSize;
1319 BOOL windowDrawable;
1320 BOOL doubleBuffer;
1321 int auxBuffers;
1322 int numSamples;
1323} WineD3D_PixelFormat;
1324
1325enum wined3d_gl_vendor
1326{
1327 GL_VENDOR_UNKNOWN,
1328 GL_VENDOR_APPLE,
1329 GL_VENDOR_FGLRX,
1330 GL_VENDOR_INTEL,
1331 GL_VENDOR_MESA,
1332 GL_VENDOR_NVIDIA,
1333};
1334
1335
1336enum wined3d_pci_vendor
1337{
1338 HW_VENDOR_SOFTWARE = 0x0000,
1339 HW_VENDOR_ATI = 0x1002,
1340 HW_VENDOR_NVIDIA = 0x10de,
1341 HW_VENDOR_INTEL = 0x8086,
1342};
1343
1344enum wined3d_pci_device
1345{
1346 CARD_WINE = 0x0000,
1347
1348 CARD_ATI_RAGE_128PRO = 0x5246,
1349 CARD_ATI_RADEON_7200 = 0x5144,
1350 CARD_ATI_RADEON_8500 = 0x514c,
1351 CARD_ATI_RADEON_9500 = 0x4144,
1352 CARD_ATI_RADEON_XPRESS_200M = 0x5955,
1353 CARD_ATI_RADEON_X700 = 0x5e4c,
1354 CARD_ATI_RADEON_X1600 = 0x71c2,
1355 CARD_ATI_RADEON_HD2350 = 0x94c7,
1356 CARD_ATI_RADEON_HD2600 = 0x9581,
1357 CARD_ATI_RADEON_HD2900 = 0x9400,
1358 CARD_ATI_RADEON_HD3200 = 0x9620,
1359 CARD_ATI_RADEON_HD4350 = 0x954f,
1360 CARD_ATI_RADEON_HD4550 = 0x9540,
1361 CARD_ATI_RADEON_HD4600 = 0x9495,
1362 CARD_ATI_RADEON_HD4650 = 0x9498,
1363 CARD_ATI_RADEON_HD4670 = 0x9490,
1364 CARD_ATI_RADEON_HD4700 = 0x944e,
1365 CARD_ATI_RADEON_HD4770 = 0x94b3,
1366 CARD_ATI_RADEON_HD4800 = 0x944c, /* Picked one value between 9440, 944c, 9442, 9460 */
1367 CARD_ATI_RADEON_HD4830 = 0x944c,
1368 CARD_ATI_RADEON_HD4850 = 0x9442,
1369 CARD_ATI_RADEON_HD4870 = 0x9440,
1370 CARD_ATI_RADEON_HD4890 = 0x9460,
1371 CARD_ATI_RADEON_HD5700 = 0x68BE, /* Picked HD5750 */
1372 CARD_ATI_RADEON_HD5750 = 0x68BE,
1373 CARD_ATI_RADEON_HD5770 = 0x68B8,
1374 CARD_ATI_RADEON_HD5800 = 0x6898, /* Picked HD5850 */
1375 CARD_ATI_RADEON_HD5850 = 0x6898,
1376 CARD_ATI_RADEON_HD5870 = 0x6899,
1377
1378 CARD_NVIDIA_RIVA_128 = 0x0018,
1379 CARD_NVIDIA_RIVA_TNT = 0x0020,
1380 CARD_NVIDIA_RIVA_TNT2 = 0x0028,
1381 CARD_NVIDIA_GEFORCE = 0x0100,
1382 CARD_NVIDIA_GEFORCE2_MX = 0x0110,
1383 CARD_NVIDIA_GEFORCE2 = 0x0150,
1384 CARD_NVIDIA_GEFORCE3 = 0x0200,
1385 CARD_NVIDIA_GEFORCE4_MX = 0x0170,
1386 CARD_NVIDIA_GEFORCE4_TI4200 = 0x0253,
1387 CARD_NVIDIA_GEFORCEFX_5200 = 0x0320,
1388 CARD_NVIDIA_GEFORCEFX_5600 = 0x0312,
1389 CARD_NVIDIA_GEFORCEFX_5800 = 0x0302,
1390 CARD_NVIDIA_GEFORCE_6200 = 0x014f,
1391 CARD_NVIDIA_GEFORCE_6600GT = 0x0140,
1392 CARD_NVIDIA_GEFORCE_6800 = 0x0041,
1393 CARD_NVIDIA_GEFORCE_7400 = 0x01d8,
1394 CARD_NVIDIA_GEFORCE_7300 = 0x01d7, /* GeForce Go 7300 */
1395 CARD_NVIDIA_GEFORCE_7600 = 0x0391,
1396 CARD_NVIDIA_GEFORCE_7800GT = 0x0092,
1397 CARD_NVIDIA_GEFORCE_8100 = 0x084F,
1398 CARD_NVIDIA_GEFORCE_8200 = 0x0849, /* Other PCI ID 0x084B */
1399 CARD_NVIDIA_GEFORCE_8300GS = 0x0423,
1400 CARD_NVIDIA_GEFORCE_8400GS = 0x0404,
1401 CARD_NVIDIA_GEFORCE_8500GT = 0x0421,
1402 CARD_NVIDIA_GEFORCE_8600GT = 0x0402,
1403 CARD_NVIDIA_GEFORCE_8600MGT = 0x0407,
1404 CARD_NVIDIA_GEFORCE_8800GTS = 0x0193,
1405 CARD_NVIDIA_GEFORCE_9200 = 0x086d,
1406 CARD_NVIDIA_GEFORCE_9400GT = 0x042c,
1407 CARD_NVIDIA_GEFORCE_9500GT = 0x0640,
1408 CARD_NVIDIA_GEFORCE_9600GT = 0x0622,
1409 CARD_NVIDIA_GEFORCE_9800GT = 0x0614,
1410 CARD_NVIDIA_GEFORCE_GTX260 = 0x05e2,
1411 CARD_NVIDIA_GEFORCE_GTX275 = 0x05e6,
1412 CARD_NVIDIA_GEFORCE_GTX280 = 0x05e1,
1413 CARD_NVIDIA_GEFORCE_GT240 = 0x0ca3,
1414
1415 CARD_INTEL_845G = 0x2562,
1416 CARD_INTEL_I830G = 0x3577,
1417 CARD_INTEL_I855G = 0x3582,
1418 CARD_INTEL_I865G = 0x2572,
1419 CARD_INTEL_I915G = 0x2582,
1420 CARD_INTEL_I915GM = 0x2592,
1421 CARD_INTEL_I945GM = 0x27a2, /* Same as GMA 950? */
1422 CARD_INTEL_X3100 = 0x2a02, /* Found in Macs. Same as GMA 965? */
1423};
1424
1425struct wined3d_fbo_ops
1426{
1427 PGLFNGLISRENDERBUFFERPROC glIsRenderbuffer;
1428 PGLFNGLBINDRENDERBUFFERPROC glBindRenderbuffer;
1429 PGLFNGLDELETERENDERBUFFERSPROC glDeleteRenderbuffers;
1430 PGLFNGLGENRENDERBUFFERSPROC glGenRenderbuffers;
1431 PGLFNGLRENDERBUFFERSTORAGEPROC glRenderbufferStorage;
1432 PGLFNRENDERBUFFERSTORAGEMULTISAMPLEPROC glRenderbufferStorageMultisample;
1433 PGLFNGLGETRENDERBUFFERPARAMETERIVPROC glGetRenderbufferParameteriv;
1434 PGLFNGLISFRAMEBUFFERPROC glIsFramebuffer;
1435 PGLFNGLBINDFRAMEBUFFERPROC glBindFramebuffer;
1436 PGLFNGLDELETEFRAMEBUFFERSPROC glDeleteFramebuffers;
1437 PGLFNGLGENFRAMEBUFFERSPROC glGenFramebuffers;
1438 PGLFNGLCHECKFRAMEBUFFERSTATUSPROC glCheckFramebufferStatus;
1439 PGLFNGLFRAMEBUFFERTEXTURE1DPROC glFramebufferTexture1D;
1440 PGLFNGLFRAMEBUFFERTEXTURE2DPROC glFramebufferTexture2D;
1441 PGLFNGLFRAMEBUFFERTEXTURE3DPROC glFramebufferTexture3D;
1442 PGLFNGLFRAMEBUFFERRENDERBUFFERPROC glFramebufferRenderbuffer;
1443 PGLFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glGetFramebufferAttachmentParameteriv;
1444 PGLFNGLBLITFRAMEBUFFERPROC glBlitFramebuffer;
1445 PGLFNGLGENERATEMIPMAPPROC glGenerateMipmap;
1446};
1447
1448struct wined3d_gl_limits
1449{
1450 UINT buffers;
1451 UINT lights;
1452 UINT textures;
1453 UINT texture_stages;
1454 UINT fragment_samplers;
1455 UINT vertex_samplers;
1456 UINT combined_samplers;
1457 UINT general_combiners;
1458 UINT sampler_stages;
1459 UINT clipplanes;
1460 UINT texture_size;
1461 UINT texture3d_size;
1462 float pointsize_max;
1463 float pointsize_min;
1464 UINT point_sprite_units;
1465 UINT blends;
1466 UINT anisotropy;
1467 float shininess;
1468
1469 UINT glsl_varyings;
1470 UINT glsl_vs_float_constants;
1471 UINT glsl_ps_float_constants;
1472
1473 UINT arb_vs_float_constants;
1474 UINT arb_vs_native_constants;
1475 UINT arb_vs_instructions;
1476 UINT arb_vs_temps;
1477 UINT arb_ps_float_constants;
1478 UINT arb_ps_local_constants;
1479 UINT arb_ps_native_constants;
1480 UINT arb_ps_instructions;
1481 UINT arb_ps_temps;
1482};
1483
1484struct wined3d_gl_info
1485{
1486 DWORD glsl_version;
1487 UINT vidmem;
1488 struct wined3d_gl_limits limits;
1489 DWORD reserved_glsl_constants;
1490 DWORD quirks;
1491 BOOL supported[WINED3D_GL_EXT_COUNT];
1492 GLint wrap_lookup[WINED3DTADDRESS_MIRRORONCE - WINED3DTADDRESS_WRAP + 1];
1493
1494 struct wined3d_fbo_ops fbo_ops;
1495#define USE_GL_FUNC(type, pfn, ext, replace) type pfn;
1496 /* GL function pointers */
1497 GL_EXT_FUNCS_GEN
1498 /* WGL function pointers */
1499 WGL_EXT_FUNCS_GEN
1500#undef USE_GL_FUNC
1501
1502 struct wined3d_format_desc *gl_formats;
1503};
1504
1505struct wined3d_driver_info
1506{
1507 enum wined3d_pci_vendor vendor;
1508 enum wined3d_pci_device device;
1509 const char *name;
1510 const char *description;
1511 DWORD version_high;
1512 DWORD version_low;
1513};
1514
1515/* The adapter structure */
1516struct wined3d_adapter
1517{
1518 UINT ordinal;
1519 BOOL opengl;
1520 POINT monitorPoint;
1521 struct wined3d_gl_info gl_info;
1522 struct wined3d_driver_info driver_info;
1523 WCHAR DeviceName[CCHDEVICENAME]; /* DeviceName for use with e.g. ChangeDisplaySettings */
1524 int nCfgs;
1525 WineD3D_PixelFormat *cfgs;
1526 BOOL brokenStencil; /* Set on cards which only offer mixed depth+stencil */
1527 unsigned int TextureRam; /* Amount of texture memory both video ram + AGP/TurboCache/HyperMemory/.. */
1528 unsigned int UsedTextureRam;
1529 LUID luid;
1530
1531 const struct fragment_pipeline *fragment_pipe;
1532 const shader_backend_t *shader_backend;
1533 const struct blit_shader *blitter;
1534};
1535
1536BOOL initPixelFormats(struct wined3d_gl_info *gl_info, enum wined3d_pci_vendor vendor) DECLSPEC_HIDDEN;
1537BOOL initPixelFormatsNoGL(struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
1538extern long WineD3DAdapterChangeGLRam(IWineD3DDeviceImpl *D3DDevice, long glram) DECLSPEC_HIDDEN;
1539extern void add_gl_compat_wrappers(struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
1540
1541/*****************************************************************************
1542 * High order patch management
1543 */
1544struct WineD3DRectPatch
1545{
1546 UINT Handle;
1547 float *mem;
1548 WineDirect3DVertexStridedData strided;
1549 WINED3DRECTPATCH_INFO RectPatchInfo;
1550 float numSegs[4];
1551 char has_normals, has_texcoords;
1552 struct list entry;
1553};
1554
1555HRESULT tesselate_rectpatch(IWineD3DDeviceImpl *This, struct WineD3DRectPatch *patch) DECLSPEC_HIDDEN;
1556
1557enum projection_types
1558{
1559 proj_none = 0,
1560 proj_count3 = 1,
1561 proj_count4 = 2
1562};
1563
1564enum dst_arg
1565{
1566 resultreg = 0,
1567 tempreg = 1
1568};
1569
1570/*****************************************************************************
1571 * Fixed function pipeline replacements
1572 */
1573#define ARG_UNUSED 0xff
1574
1575struct texture_stage_op
1576{
1577 unsigned cop : 8;
1578 unsigned carg1 : 8;
1579 unsigned carg2 : 8;
1580 unsigned carg0 : 8;
1581
1582 unsigned aop : 8;
1583 unsigned aarg1 : 8;
1584 unsigned aarg2 : 8;
1585 unsigned aarg0 : 8;
1586
1587 struct color_fixup_desc color_fixup;
1588 unsigned tex_type : 3;
1589 unsigned dst : 1;
1590 unsigned projected : 2;
1591 unsigned padding : 10;
1592};
1593
1594struct ffp_frag_settings {
1595 struct texture_stage_op op[MAX_TEXTURES];
1596 enum fogmode fog;
1597 /* Use shorts instead of chars to get dword alignment */
1598 unsigned short sRGB_write;
1599 unsigned short emul_clipplanes;
1600};
1601
1602struct ffp_frag_desc
1603{
1604 struct wine_rb_entry entry;
1605 struct ffp_frag_settings settings;
1606};
1607
1608extern const struct wine_rb_functions wined3d_ffp_frag_program_rb_functions DECLSPEC_HIDDEN;
1609extern const struct wined3d_parent_ops wined3d_null_parent_ops DECLSPEC_HIDDEN;
1610
1611void gen_ffp_frag_op(IWineD3DStateBlockImpl *stateblock, struct ffp_frag_settings *settings,
1612 BOOL ignore_textype) DECLSPEC_HIDDEN;
1613const struct ffp_frag_desc *find_ffp_frag_shader(const struct wine_rb_tree *fragment_shaders,
1614 const struct ffp_frag_settings *settings) DECLSPEC_HIDDEN;
1615void add_ffp_frag_shader(struct wine_rb_tree *shaders, struct ffp_frag_desc *desc) DECLSPEC_HIDDEN;
1616
1617/*****************************************************************************
1618 * IWineD3D implementation structure
1619 */
1620typedef struct IWineD3DImpl
1621{
1622 /* IUnknown fields */
1623 const IWineD3DVtbl *lpVtbl;
1624 LONG ref; /* Note: Ref counting not required */
1625
1626 /* WineD3D Information */
1627 IUnknown *parent;
1628 UINT dxVersion;
1629
1630 UINT adapter_count;
1631 struct wined3d_adapter adapters[1];
1632} IWineD3DImpl;
1633
1634HRESULT wined3d_init(IWineD3DImpl *wined3d, UINT version, IUnknown *parent) DECLSPEC_HIDDEN;
1635BOOL wined3d_register_window(HWND window, struct IWineD3DDeviceImpl *device) DECLSPEC_HIDDEN;
1636void wined3d_unregister_window(HWND window) DECLSPEC_HIDDEN;
1637
1638/*****************************************************************************
1639 * IWineD3DDevice implementation structure
1640 */
1641#define WINED3D_UNMAPPED_STAGE ~0U
1642
1643/* Multithreaded flag. Removed from the public header to signal that IWineD3D::CreateDevice ignores it */
1644#define WINED3DCREATE_MULTITHREADED 0x00000004
1645
1646struct IWineD3DDeviceImpl
1647{
1648 /* IUnknown fields */
1649 const IWineD3DDeviceVtbl *lpVtbl;
1650 LONG ref; /* Note: Ref counting not required */
1651
1652 /* WineD3D Information */
1653 IUnknown *parent;
1654 IWineD3DDeviceParent *device_parent;
1655 IWineD3D *wined3d;
1656 struct wined3d_adapter *adapter;
1657
1658 /* Window styles to restore when switching fullscreen mode */
1659 LONG style;
1660 LONG exStyle;
1661
1662 /* X and GL Information */
1663 GLint maxConcurrentLights;
1664 GLenum offscreenBuffer;
1665
1666 /* Selected capabilities */
1667 int vs_selected_mode;
1668 int ps_selected_mode;
1669 const shader_backend_t *shader_backend;
1670 void *shader_priv;
1671 void *fragment_priv;
1672 void *blit_priv;
1673 struct StateEntry StateTable[STATE_HIGHEST + 1];
1674 /* Array of functions for states which are handled by more than one pipeline part */
1675 APPLYSTATEFUNC *multistate_funcs[STATE_HIGHEST + 1];
1676 const struct fragment_pipeline *frag_pipe;
1677 const struct blit_shader *blitter;
1678
1679 unsigned int max_ffp_textures;
1680 DWORD d3d_vshader_constantF, d3d_pshader_constantF; /* Advertised d3d caps, not GL ones */
1681 DWORD vs_clipping;
1682
1683 WORD view_ident : 1; /* true iff view matrix is identity */
1684 WORD untransformed : 1;
1685 WORD vertexBlendUsed : 1; /* To avoid needless setting of the blend matrices */
1686 WORD isRecordingState : 1;
1687 WORD isInDraw : 1;
1688 WORD bCursorVisible : 1;
1689 WORD haveHardwareCursor : 1;
1690 WORD d3d_initialized : 1;
1691 WORD inScene : 1; /* A flag to check for proper BeginScene / EndScene call pairs */
1692 WORD softwareVertexProcessing : 1; /* process vertex shaders using software or hardware */
1693 WORD useDrawStridedSlow : 1;
1694 WORD instancedDraw : 1;
1695 WORD filter_messages : 1;
1696 WORD padding : 3;
1697
1698 BYTE fixed_function_usage_map; /* MAX_TEXTURES, 8 */
1699
1700#define DDRAW_PITCH_ALIGNMENT 8
1701#define D3D8_PITCH_ALIGNMENT 4
1702 unsigned char surface_alignment; /* Line Alignment of surfaces */
1703
1704 /* State block related */
1705 IWineD3DStateBlockImpl *stateBlock;
1706 IWineD3DStateBlockImpl *updateStateBlock;
1707
1708 /* Internal use fields */
1709 WINED3DDEVICE_CREATION_PARAMETERS createParms;
1710 WINED3DDEVTYPE devType;
1711 HWND focus_window;
1712
1713 IWineD3DSwapChain **swapchains;
1714 UINT NumberOfSwapChains;
1715
1716 struct list resources; /* a linked list to track resources created by the device */
1717 struct list shaders; /* a linked list to track shaders (pixel and vertex) */
1718 unsigned int highest_dirty_ps_const, highest_dirty_vs_const;
1719
1720 /* Render Target Support */
1721 IWineD3DSurface **render_targets;
1722 IWineD3DSurface *auto_depth_stencil_buffer;
1723 IWineD3DSurface *stencilBufferTarget;
1724
1725 /* palettes texture management */
1726 UINT NumberOfPalettes;
1727 PALETTEENTRY **palettes;
1728 UINT currentPalette;
1729
1730 /* For rendering to a texture using glCopyTexImage */
1731 GLenum *draw_buffers;
1732 GLuint depth_blt_texture;
1733 GLuint depth_blt_rb;
1734 UINT depth_blt_rb_w;
1735 UINT depth_blt_rb_h;
1736
1737 /* Cursor management */
1738 UINT xHotSpot;
1739 UINT yHotSpot;
1740 UINT xScreenSpace;
1741 UINT yScreenSpace;
1742 UINT cursorWidth, cursorHeight;
1743 GLuint cursorTexture;
1744 HCURSOR hardwareCursor;
1745
1746 /* The Wine logo surface */
1747 IWineD3DSurface *logo_surface;
1748
1749 /* Textures for when no other textures are mapped */
1750 UINT dummyTextureName[MAX_TEXTURES];
1751
1752 /* DirectDraw stuff */
1753 DWORD ddraw_width, ddraw_height;
1754 WINED3DFORMAT ddraw_format;
1755
1756 /* Final position fixup constant */
1757 float posFixup[4];
1758
1759 /* With register combiners we can skip junk texture stages */
1760 DWORD texUnitMap[MAX_COMBINED_SAMPLERS];
1761 DWORD rev_tex_unit_map[MAX_COMBINED_SAMPLERS];
1762
1763 /* Stream source management */
1764 struct wined3d_stream_info strided_streams;
1765 const WineDirect3DVertexStridedData *up_strided;
1766 struct wined3d_event_query *buffer_queries[MAX_ATTRIBS];
1767 unsigned int num_buffer_queries;
1768
1769 /* Context management */
1770 struct wined3d_context **contexts;
1771 UINT numContexts;
1772
1773 /* High level patch management */
1774#define PATCHMAP_SIZE 43
1775#define PATCHMAP_HASHFUNC(x) ((x) % PATCHMAP_SIZE) /* Primitive and simple function */
1776 struct list patches[PATCHMAP_SIZE];
1777 struct WineD3DRectPatch *currentPatch;
1778};
1779
1780BOOL device_context_add(IWineD3DDeviceImpl *device, struct wined3d_context *context) DECLSPEC_HIDDEN;
1781void device_context_remove(IWineD3DDeviceImpl *device, struct wined3d_context *context) DECLSPEC_HIDDEN;
1782HRESULT device_init(IWineD3DDeviceImpl *device, IWineD3DImpl *wined3d,
1783 UINT adapter_idx, WINED3DDEVTYPE device_type, HWND focus_window, DWORD flags,
1784 IUnknown *parent, IWineD3DDeviceParent *device_parent) DECLSPEC_HIDDEN;
1785void device_preload_textures(IWineD3DDeviceImpl *device) DECLSPEC_HIDDEN;
1786LRESULT device_process_message(IWineD3DDeviceImpl *device, HWND window,
1787 UINT message, WPARAM wparam, LPARAM lparam, WNDPROC proc) DECLSPEC_HIDDEN;
1788void device_resource_add(IWineD3DDeviceImpl *This, IWineD3DResource *resource) DECLSPEC_HIDDEN;
1789void device_resource_released(IWineD3DDeviceImpl *This, IWineD3DResource *resource) DECLSPEC_HIDDEN;
1790void device_stream_info_from_declaration(IWineD3DDeviceImpl *This,
1791 BOOL use_vshader, struct wined3d_stream_info *stream_info, BOOL *fixup) DECLSPEC_HIDDEN;
1792void device_update_stream_info(IWineD3DDeviceImpl *device, const struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
1793HRESULT IWineD3DDeviceImpl_ClearSurface(IWineD3DDeviceImpl *This, IWineD3DSurfaceImpl *target, DWORD Count,
1794 const WINED3DRECT *pRects, DWORD Flags, WINED3DCOLOR Color, float Z, DWORD Stencil) DECLSPEC_HIDDEN;
1795void IWineD3DDeviceImpl_FindTexUnitMap(IWineD3DDeviceImpl *This) DECLSPEC_HIDDEN;
1796void IWineD3DDeviceImpl_MarkStateDirty(IWineD3DDeviceImpl *This, DWORD state) DECLSPEC_HIDDEN;
1797
1798static inline BOOL isStateDirty(struct wined3d_context *context, DWORD state)
1799{
1800 DWORD idx = state / (sizeof(*context->isStateDirty) * CHAR_BIT);
1801 BYTE shift = state & ((sizeof(*context->isStateDirty) * CHAR_BIT) - 1);
1802 return context->isStateDirty[idx] & (1 << shift);
1803}
1804
1805/* Support for IWineD3DResource ::Set/Get/FreePrivateData. */
1806typedef struct PrivateData
1807{
1808 struct list entry;
1809
1810 GUID tag;
1811 DWORD flags; /* DDSPD_* */
1812
1813 union
1814 {
1815 LPVOID data;
1816 LPUNKNOWN object;
1817 } ptr;
1818
1819 DWORD size;
1820} PrivateData;
1821
1822/*****************************************************************************
1823 * IWineD3DResource implementation structure
1824 */
1825typedef struct IWineD3DResourceClass
1826{
1827 /* IUnknown fields */
1828 LONG ref; /* Note: Ref counting not required */
1829
1830 /* WineD3DResource Information */
1831 IUnknown *parent;
1832 WINED3DRESOURCETYPE resourceType;
1833 IWineD3DDeviceImpl *device;
1834 WINED3DPOOL pool;
1835 UINT size;
1836 DWORD usage;
1837 const struct wined3d_format_desc *format_desc;
1838 DWORD priority;
1839 BYTE *allocatedMemory; /* Pointer to the real data location */
1840 BYTE *heapMemory; /* Pointer to the HeapAlloced block of memory */
1841#ifdef VBOX_WITH_WDDM
1842 DWORD sharerc_flags; /* shared resource flags */
1843 DWORD sharerc_handle;
1844#endif
1845 struct list privateData;
1846 struct list resource_list_entry;
1847 const struct wined3d_parent_ops *parent_ops;
1848} IWineD3DResourceClass;
1849
1850typedef struct IWineD3DResourceImpl
1851{
1852 /* IUnknown & WineD3DResource Information */
1853 const IWineD3DResourceVtbl *lpVtbl;
1854 IWineD3DResourceClass resource;
1855} IWineD3DResourceImpl;
1856
1857void resource_cleanup(IWineD3DResource *iface) DECLSPEC_HIDDEN;
1858HRESULT resource_free_private_data(IWineD3DResource *iface, REFGUID guid) DECLSPEC_HIDDEN;
1859HRESULT resource_get_parent(IWineD3DResource *iface, IUnknown **parent) DECLSPEC_HIDDEN;
1860DWORD resource_get_priority(IWineD3DResource *iface) DECLSPEC_HIDDEN;
1861HRESULT resource_get_private_data(IWineD3DResource *iface, REFGUID guid,
1862 void *data, DWORD *data_size) DECLSPEC_HIDDEN;
1863HRESULT resource_init(IWineD3DResource *iface, WINED3DRESOURCETYPE resource_type,
1864 IWineD3DDeviceImpl *device, UINT size, DWORD usage, const struct wined3d_format_desc *format_desc,
1865 WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops
1866#ifdef VBOX_WITH_WDDM
1867 , HANDLE *shared_handle
1868 , void *pvClientMem
1869#endif
1870 ) DECLSPEC_HIDDEN;
1871WINED3DRESOURCETYPE resource_get_type(IWineD3DResource *iface) DECLSPEC_HIDDEN;
1872DWORD resource_set_priority(IWineD3DResource *iface, DWORD new_priority) DECLSPEC_HIDDEN;
1873HRESULT resource_set_private_data(IWineD3DResource *iface, REFGUID guid,
1874 const void *data, DWORD data_size, DWORD flags) DECLSPEC_HIDDEN;
1875
1876/* Tests show that the start address of resources is 32 byte aligned */
1877#define RESOURCE_ALIGNMENT 16
1878
1879/*****************************************************************************
1880 * IWineD3DBaseTexture D3D- > openGL state map lookups
1881 */
1882
1883typedef enum winetexturestates {
1884 WINED3DTEXSTA_ADDRESSU = 0,
1885 WINED3DTEXSTA_ADDRESSV = 1,
1886 WINED3DTEXSTA_ADDRESSW = 2,
1887 WINED3DTEXSTA_BORDERCOLOR = 3,
1888 WINED3DTEXSTA_MAGFILTER = 4,
1889 WINED3DTEXSTA_MINFILTER = 5,
1890 WINED3DTEXSTA_MIPFILTER = 6,
1891 WINED3DTEXSTA_MAXMIPLEVEL = 7,
1892 WINED3DTEXSTA_MAXANISOTROPY = 8,
1893 WINED3DTEXSTA_SRGBTEXTURE = 9,
1894 WINED3DTEXSTA_ELEMENTINDEX = 10,
1895 WINED3DTEXSTA_DMAPOFFSET = 11,
1896 WINED3DTEXSTA_TSSADDRESSW = 12,
1897 MAX_WINETEXTURESTATES = 13,
1898} winetexturestates;
1899
1900enum WINED3DSRGB
1901{
1902 SRGB_ANY = 0, /* Uses the cached value(e.g. external calls) */
1903 SRGB_RGB = 1, /* Loads the rgb texture */
1904 SRGB_SRGB = 2, /* Loads the srgb texture */
1905 SRGB_BOTH = 3, /* Loads both textures */
1906};
1907
1908struct gl_texture
1909{
1910 DWORD states[MAX_WINETEXTURESTATES];
1911 BOOL dirty;
1912 GLuint name;
1913};
1914
1915/*****************************************************************************
1916 * IWineD3DBaseTexture implementation structure (extends IWineD3DResourceImpl)
1917 */
1918typedef struct IWineD3DBaseTextureClass
1919{
1920 struct gl_texture texture_rgb, texture_srgb;
1921 UINT levels;
1922 float pow2Matrix[16];
1923 UINT LOD;
1924 WINED3DTEXTUREFILTERTYPE filterType;
1925 LONG bindCount;
1926 DWORD sampler;
1927 BOOL is_srgb;
1928 BOOL pow2Matrix_identity;
1929 BOOL t_mirror;
1930 const struct min_lookup *minMipLookup;
1931 const GLenum *magLookup;
1932 void (*internal_preload)(IWineD3DBaseTexture *iface, enum WINED3DSRGB srgb);
1933} IWineD3DBaseTextureClass;
1934
1935void surface_internal_preload(IWineD3DSurface *iface, enum WINED3DSRGB srgb) DECLSPEC_HIDDEN;
1936BOOL surface_init_sysmem(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
1937BOOL surface_is_offscreen(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
1938void surface_prepare_texture(IWineD3DSurfaceImpl *surface,
1939 const struct wined3d_gl_info *gl_info, BOOL srgb) DECLSPEC_HIDDEN;
1940
1941typedef struct IWineD3DBaseTextureImpl
1942{
1943 /* IUnknown & WineD3DResource Information */
1944 const IWineD3DBaseTextureVtbl *lpVtbl;
1945 IWineD3DResourceClass resource;
1946 IWineD3DBaseTextureClass baseTexture;
1947
1948} IWineD3DBaseTextureImpl;
1949
1950void basetexture_apply_state_changes(IWineD3DBaseTexture *iface,
1951 const DWORD textureStates[WINED3D_HIGHEST_TEXTURE_STATE + 1],
1952 const DWORD samplerStates[WINED3D_HIGHEST_SAMPLER_STATE + 1],
1953 const struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
1954HRESULT basetexture_bind(IWineD3DBaseTexture *iface, BOOL srgb, BOOL *set_surface_desc) DECLSPEC_HIDDEN;
1955void basetexture_cleanup(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1956void basetexture_generate_mipmaps(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1957WINED3DTEXTUREFILTERTYPE basetexture_get_autogen_filter_type(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1958BOOL basetexture_get_dirty(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1959DWORD basetexture_get_level_count(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1960DWORD basetexture_get_lod(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1961HRESULT basetexture_init(IWineD3DBaseTextureImpl *texture, UINT levels, WINED3DRESOURCETYPE resource_type,
1962 IWineD3DDeviceImpl *device, UINT size, DWORD usage, const struct wined3d_format_desc *format_desc,
1963 WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops
1964#ifdef VBOX_WITH_WDDM
1965 , HANDLE *shared_handle
1966 , void **pavClientMem
1967#endif
1968 ) DECLSPEC_HIDDEN;
1969HRESULT basetexture_set_autogen_filter_type(IWineD3DBaseTexture *iface,
1970 WINED3DTEXTUREFILTERTYPE filter_type) DECLSPEC_HIDDEN;
1971BOOL basetexture_set_dirty(IWineD3DBaseTexture *iface, BOOL dirty) DECLSPEC_HIDDEN;
1972DWORD basetexture_set_lod(IWineD3DBaseTexture *iface, DWORD new_lod) DECLSPEC_HIDDEN;
1973void basetexture_unload(IWineD3DBaseTexture *iface) DECLSPEC_HIDDEN;
1974
1975/*****************************************************************************
1976 * IWineD3DTexture implementation structure (extends IWineD3DBaseTextureImpl)
1977 */
1978typedef struct IWineD3DTextureImpl
1979{
1980 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
1981 const IWineD3DTextureVtbl *lpVtbl;
1982 IWineD3DResourceClass resource;
1983 IWineD3DBaseTextureClass baseTexture;
1984
1985 /* IWineD3DTexture */
1986 IWineD3DSurface *surfaces[MAX_MIP_LEVELS];
1987 UINT target;
1988 BOOL cond_np2;
1989
1990} IWineD3DTextureImpl;
1991
1992HRESULT texture_init(IWineD3DTextureImpl *texture, UINT width, UINT height, UINT levels,
1993 IWineD3DDeviceImpl *device, DWORD usage, WINED3DFORMAT format, WINED3DPOOL pool,
1994 IUnknown *parent, const struct wined3d_parent_ops *parent_ops
1995#ifdef VBOX_WITH_WDDM
1996 , HANDLE *shared_handle
1997 , void **pavClientMem
1998#endif
1999 ) DECLSPEC_HIDDEN;
2000
2001/*****************************************************************************
2002 * IWineD3DCubeTexture implementation structure (extends IWineD3DBaseTextureImpl)
2003 */
2004typedef struct IWineD3DCubeTextureImpl
2005{
2006 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
2007 const IWineD3DCubeTextureVtbl *lpVtbl;
2008 IWineD3DResourceClass resource;
2009 IWineD3DBaseTextureClass baseTexture;
2010
2011 /* IWineD3DCubeTexture */
2012 IWineD3DSurface *surfaces[6][MAX_MIP_LEVELS];
2013} IWineD3DCubeTextureImpl;
2014
2015HRESULT cubetexture_init(IWineD3DCubeTextureImpl *texture, UINT edge_length, UINT levels,
2016 IWineD3DDeviceImpl *device, DWORD usage, WINED3DFORMAT format, WINED3DPOOL pool,
2017 IUnknown *parent, const struct wined3d_parent_ops *parent_ops
2018#ifdef VBOX_WITH_WDDM
2019 , HANDLE *shared_handle
2020 , void **pavClientMem
2021#endif
2022 ) DECLSPEC_HIDDEN;
2023
2024typedef struct _WINED3DVOLUMET_DESC
2025{
2026 UINT Width;
2027 UINT Height;
2028 UINT Depth;
2029} WINED3DVOLUMET_DESC;
2030
2031/*****************************************************************************
2032 * IWineD3DVolume implementation structure (extends IUnknown)
2033 */
2034typedef struct IWineD3DVolumeImpl
2035{
2036 /* IUnknown & WineD3DResource fields */
2037 const IWineD3DVolumeVtbl *lpVtbl;
2038 IWineD3DResourceClass resource;
2039
2040 /* WineD3DVolume Information */
2041 WINED3DVOLUMET_DESC currentDesc;
2042 IWineD3DBase *container;
2043 BOOL lockable;
2044 BOOL locked;
2045 WINED3DBOX lockedBox;
2046 WINED3DBOX dirtyBox;
2047 BOOL dirty;
2048} IWineD3DVolumeImpl;
2049
2050void volume_add_dirty_box(IWineD3DVolume *iface, const WINED3DBOX *dirty_box) DECLSPEC_HIDDEN;
2051HRESULT volume_init(IWineD3DVolumeImpl *volume, IWineD3DDeviceImpl *device, UINT width,
2052 UINT height, UINT depth, DWORD usage, WINED3DFORMAT format, WINED3DPOOL pool,
2053 IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2054
2055/*****************************************************************************
2056 * IWineD3DVolumeTexture implementation structure (extends IWineD3DBaseTextureImpl)
2057 */
2058typedef struct IWineD3DVolumeTextureImpl
2059{
2060 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
2061 const IWineD3DVolumeTextureVtbl *lpVtbl;
2062 IWineD3DResourceClass resource;
2063 IWineD3DBaseTextureClass baseTexture;
2064
2065 /* IWineD3DVolumeTexture */
2066 IWineD3DVolume *volumes[MAX_MIP_LEVELS];
2067} IWineD3DVolumeTextureImpl;
2068
2069HRESULT volumetexture_init(IWineD3DVolumeTextureImpl *texture, UINT width, UINT height,
2070 UINT depth, UINT levels, IWineD3DDeviceImpl *device, DWORD usage, WINED3DFORMAT format,
2071 WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2072
2073typedef struct _WINED3DSURFACET_DESC
2074{
2075 WINED3DMULTISAMPLE_TYPE MultiSampleType;
2076 DWORD MultiSampleQuality;
2077 UINT Width;
2078 UINT Height;
2079} WINED3DSURFACET_DESC;
2080
2081/*****************************************************************************
2082 * Structure for DIB Surfaces (GetDC and GDI surfaces)
2083 */
2084typedef struct wineD3DSurface_DIB {
2085 HBITMAP DIBsection;
2086 void* bitmap_data;
2087 UINT bitmap_size;
2088 HGDIOBJ holdbitmap;
2089 BOOL client_memory;
2090} wineD3DSurface_DIB;
2091
2092typedef struct {
2093 struct list entry;
2094 GLuint id;
2095 UINT width;
2096 UINT height;
2097} renderbuffer_entry_t;
2098
2099struct fbo_entry
2100{
2101 struct list entry;
2102 IWineD3DSurfaceImpl **render_targets;
2103 IWineD3DSurfaceImpl *depth_stencil;
2104 BOOL attached;
2105 GLuint id;
2106};
2107
2108/*****************************************************************************
2109 * IWineD3DClipp implementation structure
2110 */
2111typedef struct IWineD3DClipperImpl
2112{
2113 const IWineD3DClipperVtbl *lpVtbl;
2114 LONG ref;
2115
2116 IUnknown *Parent;
2117 HWND hWnd;
2118} IWineD3DClipperImpl;
2119
2120
2121/*****************************************************************************
2122 * IWineD3DSurface implementation structure
2123 */
2124struct IWineD3DSurfaceImpl
2125{
2126 /* IUnknown & IWineD3DResource Information */
2127 const IWineD3DSurfaceVtbl *lpVtbl;
2128 IWineD3DResourceClass resource;
2129
2130 /* IWineD3DSurface fields */
2131 IWineD3DBase *container;
2132 WINED3DSURFACET_DESC currentDesc;
2133 IWineD3DPaletteImpl *palette; /* D3D7 style palette handling */
2134 PALETTEENTRY *palette9; /* D3D8/9 style palette handling */
2135
2136 /* TODO: move this off into a management class(maybe!) */
2137 DWORD Flags;
2138
2139 UINT pow2Width;
2140 UINT pow2Height;
2141
2142 /* A method to retrieve the drawable size. Not in the Vtable to make it changeable */
2143 void (*get_drawable_size)(struct wined3d_context *context, UINT *width, UINT *height);
2144
2145 /* PBO */
2146 GLuint pbo;
2147 GLuint texture_name;
2148 GLuint texture_name_srgb;
2149 GLint texture_level;
2150 GLenum texture_target;
2151
2152 RECT lockedRect;
2153 RECT dirtyRect;
2154 int lockCount;
2155#define MAXLOCKCOUNT 50 /* After this amount of locks do not free the sysmem copy */
2156
2157 /* For GetDC */
2158 wineD3DSurface_DIB dib;
2159 HDC hDC;
2160
2161 /* Color keys for DDraw */
2162 WINEDDCOLORKEY DestBltCKey;
2163 WINEDDCOLORKEY DestOverlayCKey;
2164 WINEDDCOLORKEY SrcOverlayCKey;
2165 WINEDDCOLORKEY SrcBltCKey;
2166 DWORD CKeyFlags;
2167
2168 WINEDDCOLORKEY glCKey;
2169
2170 struct list renderbuffers;
2171 renderbuffer_entry_t *current_renderbuffer;
2172
2173 /* DirectDraw clippers */
2174 IWineD3DClipper *clipper;
2175
2176 /* DirectDraw Overlay handling */
2177 RECT overlay_srcrect;
2178 RECT overlay_destrect;
2179 IWineD3DSurfaceImpl *overlay_dest;
2180 struct list overlays;
2181 struct list overlay_entry;
2182};
2183
2184extern const IWineD3DSurfaceVtbl IWineD3DSurface_Vtbl DECLSPEC_HIDDEN;
2185extern const IWineD3DSurfaceVtbl IWineGDISurface_Vtbl DECLSPEC_HIDDEN;
2186
2187UINT surface_calculate_size(const struct wined3d_format_desc *format_desc,
2188 UINT alignment, UINT width, UINT height) DECLSPEC_HIDDEN;
2189void surface_gdi_cleanup(IWineD3DSurfaceImpl *This) DECLSPEC_HIDDEN;
2190HRESULT surface_init(IWineD3DSurfaceImpl *surface, WINED3DSURFTYPE surface_type, UINT alignment,
2191 UINT width, UINT height, UINT level, BOOL lockable, BOOL discard, WINED3DMULTISAMPLE_TYPE multisample_type,
2192 UINT multisample_quality, IWineD3DDeviceImpl *device, DWORD usage, WINED3DFORMAT format,
2193 WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops
2194#ifdef VBOX_WITH_WDDM
2195 , HANDLE *shared_handle
2196 , void *pvClientMem
2197#endif
2198 ) DECLSPEC_HIDDEN;
2199
2200/* Predeclare the shared Surface functions */
2201HRESULT WINAPI IWineD3DBaseSurfaceImpl_QueryInterface(IWineD3DSurface *iface,
2202 REFIID riid, LPVOID *ppobj) DECLSPEC_HIDDEN;
2203ULONG WINAPI IWineD3DBaseSurfaceImpl_AddRef(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2204HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetParent(IWineD3DSurface *iface, IUnknown **pParent) DECLSPEC_HIDDEN;
2205HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPrivateData(IWineD3DSurface *iface,
2206 REFGUID refguid, const void *pData, DWORD SizeOfData, DWORD Flags) DECLSPEC_HIDDEN;
2207HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPrivateData(IWineD3DSurface *iface,
2208 REFGUID refguid, void *pData, DWORD *pSizeOfData) DECLSPEC_HIDDEN;
2209HRESULT WINAPI IWineD3DBaseSurfaceImpl_FreePrivateData(IWineD3DSurface *iface, REFGUID refguid) DECLSPEC_HIDDEN;
2210DWORD WINAPI IWineD3DBaseSurfaceImpl_SetPriority(IWineD3DSurface *iface, DWORD PriorityNew) DECLSPEC_HIDDEN;
2211DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPriority(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2212WINED3DRESOURCETYPE WINAPI IWineD3DBaseSurfaceImpl_GetType(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2213HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetContainer(IWineD3DSurface* iface,
2214 REFIID riid, void **ppContainer) DECLSPEC_HIDDEN;
2215HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDesc(IWineD3DSurface *iface, WINED3DSURFACE_DESC *pDesc) DECLSPEC_HIDDEN;
2216HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetBltStatus(IWineD3DSurface *iface, DWORD Flags) DECLSPEC_HIDDEN;
2217HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetFlipStatus(IWineD3DSurface *iface, DWORD Flags) DECLSPEC_HIDDEN;
2218HRESULT WINAPI IWineD3DBaseSurfaceImpl_IsLost(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2219HRESULT WINAPI IWineD3DBaseSurfaceImpl_Restore(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2220HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPalette(IWineD3DSurface *iface, IWineD3DPalette **Pal) DECLSPEC_HIDDEN;
2221HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPalette(IWineD3DSurface *iface, IWineD3DPalette *Pal) DECLSPEC_HIDDEN;
2222HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetColorKey(IWineD3DSurface *iface,
2223 DWORD Flags, const WINEDDCOLORKEY *CKey) DECLSPEC_HIDDEN;
2224HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetContainer(IWineD3DSurface *iface, IWineD3DBase *container) DECLSPEC_HIDDEN;
2225DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPitch(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2226HRESULT WINAPI IWineD3DBaseSurfaceImpl_RealizePalette(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2227HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetOverlayPosition(IWineD3DSurface *iface, LONG X, LONG Y) DECLSPEC_HIDDEN;
2228HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetOverlayPosition(IWineD3DSurface *iface, LONG *X, LONG *Y) DECLSPEC_HIDDEN;
2229HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlayZOrder(IWineD3DSurface *iface,
2230 DWORD Flags, IWineD3DSurface *Ref) DECLSPEC_HIDDEN;
2231HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlay(IWineD3DSurface *iface, const RECT *SrcRect,
2232 IWineD3DSurface *DstSurface, const RECT *DstRect, DWORD Flags, const WINEDDOVERLAYFX *FX) DECLSPEC_HIDDEN;
2233HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetClipper(IWineD3DSurface *iface, IWineD3DClipper *clipper) DECLSPEC_HIDDEN;
2234HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetClipper(IWineD3DSurface *iface, IWineD3DClipper **clipper) DECLSPEC_HIDDEN;
2235HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetFormat(IWineD3DSurface *iface, WINED3DFORMAT format) DECLSPEC_HIDDEN;
2236HRESULT IWineD3DBaseSurfaceImpl_CreateDIBSection(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2237HRESULT WINAPI IWineD3DBaseSurfaceImpl_Blt(IWineD3DSurface *iface, const RECT *DestRect, IWineD3DSurface *SrcSurface,
2238 const RECT *SrcRect, DWORD Flags, const WINEDDBLTFX *DDBltFx, WINED3DTEXTUREFILTERTYPE Filter) DECLSPEC_HIDDEN;
2239HRESULT WINAPI IWineD3DBaseSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dstx, DWORD dsty,
2240 IWineD3DSurface *Source, const RECT *rsrc, DWORD trans) DECLSPEC_HIDDEN;
2241HRESULT WINAPI IWineD3DBaseSurfaceImpl_LockRect(IWineD3DSurface *iface, WINED3DLOCKED_RECT *pLockedRect,
2242 const RECT *pRect, DWORD Flags) DECLSPEC_HIDDEN;
2243void WINAPI IWineD3DBaseSurfaceImpl_BindTexture(IWineD3DSurface *iface, BOOL srgb) DECLSPEC_HIDDEN;
2244const void *WINAPI IWineD3DBaseSurfaceImpl_GetData(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2245
2246void get_drawable_size_swapchain(struct wined3d_context *context, UINT *width, UINT *height) DECLSPEC_HIDDEN;
2247void get_drawable_size_backbuffer(struct wined3d_context *context, UINT *width, UINT *height) DECLSPEC_HIDDEN;
2248void get_drawable_size_fbo(struct wined3d_context *context, UINT *width, UINT *height) DECLSPEC_HIDDEN;
2249
2250void draw_textured_quad(IWineD3DSurfaceImpl *src_surface, const RECT *src_rect,
2251 const RECT *dst_rect, WINED3DTEXTUREFILTERTYPE Filter) DECLSPEC_HIDDEN;
2252void flip_surface(IWineD3DSurfaceImpl *front, IWineD3DSurfaceImpl *back) DECLSPEC_HIDDEN;
2253
2254/* Surface flags: */
2255#define SFLAG_CONVERTED 0x00000002 /* Converted for color keying or Palettized */
2256#define SFLAG_DIBSECTION 0x00000004 /* Has a DIB section attached for GetDC */
2257#define SFLAG_LOCKABLE 0x00000008 /* Surface can be locked */
2258#define SFLAG_DISCARD 0x00000010 /* ??? */
2259#define SFLAG_LOCKED 0x00000020 /* Surface is locked atm */
2260#define SFLAG_INTEXTURE 0x00000040 /* The GL texture contains the newest surface content */
2261#define SFLAG_INSRGBTEX 0x00000080 /* The GL srgb texture contains the newest surface content */
2262#define SFLAG_INDRAWABLE 0x00000100 /* The gl drawable contains the most up to date data */
2263#define SFLAG_INSYSMEM 0x00000200 /* The system memory copy is most up to date */
2264#define SFLAG_NONPOW2 0x00000400 /* Surface sizes are not a power of 2 */
2265#define SFLAG_DYNLOCK 0x00000800 /* Surface is often locked by the app */
2266#define SFLAG_DCINUSE 0x00001000 /* Set between GetDC and ReleaseDC calls */
2267#define SFLAG_LOST 0x00002000 /* Surface lost flag for DDraw */
2268#define SFLAG_USERPTR 0x00004000 /* The application allocated the memory for this surface */
2269#define SFLAG_GLCKEY 0x00008000 /* The gl texture was created with a color key */
2270#define SFLAG_CLIENT 0x00010000 /* GL_APPLE_client_storage is used on that texture */
2271#define SFLAG_ALLOCATED 0x00020000 /* A gl texture is allocated for this surface */
2272#define SFLAG_SRGBALLOCATED 0x00040000 /* A srgb gl texture is allocated for this surface */
2273#define SFLAG_PBO 0x00080000 /* Has a PBO attached for speeding up data transfers for dynamically locked surfaces */
2274#define SFLAG_NORMCOORD 0x00100000 /* Set if the GL texture coords are normalized(non-texture rectangle) */
2275#define SFLAG_DS_ONSCREEN 0x00200000 /* Is a depth stencil, last modified onscreen */
2276#define SFLAG_DS_OFFSCREEN 0x00400000 /* Is a depth stencil, last modified offscreen */
2277#define SFLAG_INOVERLAYDRAW 0x00800000 /* Overlay drawing is in progress. Recursion prevention */
2278#define SFLAG_SWAPCHAIN 0x01000000 /* The surface is part of a swapchain */
2279
2280#ifdef VBOX_WITH_WDDM
2281# define SFLAG_CLIENTMEM 0x10000000 /* SYSMEM surface using client-supplied memory buffer */
2282# define SFLAG_DONOTFREE_VBOXWDDM SFLAG_CLIENTMEM
2283#else
2284# define SFLAG_DONOTFREE_VBOXWDDM 0
2285#endif
2286
2287/* In some conditions the surface memory must not be freed:
2288 * SFLAG_CONVERTED: Converting the data back would take too long
2289 * SFLAG_DIBSECTION: The dib code manages the memory
2290 * SFLAG_LOCKED: The app requires access to the surface data
2291 * SFLAG_DYNLOCK: Avoid freeing the data for performance
2292 * SFLAG_PBO: PBOs don't use 'normal' memory. It is either allocated by the driver or must be NULL.
2293 * SFLAG_CLIENT: OpenGL uses our memory as backup
2294 */
2295#define SFLAG_DONOTFREE (SFLAG_CONVERTED | \
2296 SFLAG_DIBSECTION | \
2297 SFLAG_LOCKED | \
2298 SFLAG_DYNLOCK | \
2299 SFLAG_USERPTR | \
2300 SFLAG_PBO | \
2301 SFLAG_CLIENT | \
2302 SFLAG_DONOTFREE_VBOXWDDM \
2303 )
2304
2305#define SFLAG_LOCATIONS (SFLAG_INSYSMEM | \
2306 SFLAG_INTEXTURE | \
2307 SFLAG_INDRAWABLE | \
2308 SFLAG_INSRGBTEX)
2309
2310#define SFLAG_DS_LOCATIONS (SFLAG_DS_ONSCREEN | \
2311 SFLAG_DS_OFFSCREEN)
2312#define SFLAG_DS_DISCARDED SFLAG_DS_LOCATIONS
2313
2314typedef enum {
2315 NO_CONVERSION,
2316 CONVERT_PALETTED,
2317 CONVERT_PALETTED_CK,
2318 CONVERT_CK_565,
2319 CONVERT_CK_5551,
2320 CONVERT_CK_4444,
2321 CONVERT_CK_4444_ARGB,
2322 CONVERT_CK_1555,
2323 CONVERT_555,
2324 CONVERT_CK_RGB24,
2325 CONVERT_CK_8888,
2326 CONVERT_CK_8888_ARGB,
2327 CONVERT_RGB32_888,
2328 CONVERT_V8U8,
2329 CONVERT_L6V5U5,
2330 CONVERT_X8L8V8U8,
2331 CONVERT_Q8W8V8U8,
2332 CONVERT_V16U16,
2333 CONVERT_A4L4,
2334 CONVERT_G16R16,
2335 CONVERT_R16G16F,
2336 CONVERT_R32G32F,
2337 CONVERT_D15S1,
2338 CONVERT_D24X4S4,
2339 CONVERT_D24FS8,
2340} CONVERT_TYPES;
2341
2342HRESULT d3dfmt_get_conv(IWineD3DSurfaceImpl *This, BOOL need_alpha_ck, BOOL use_texturing,
2343 struct wined3d_format_desc *desc, CONVERT_TYPES *convert) DECLSPEC_HIDDEN;
2344void d3dfmt_p8_init_palette(IWineD3DSurfaceImpl *This, BYTE table[256][4], BOOL colorkey) DECLSPEC_HIDDEN;
2345
2346BOOL palette9_changed(IWineD3DSurfaceImpl *This) DECLSPEC_HIDDEN;
2347
2348/*****************************************************************************
2349 * IWineD3DVertexDeclaration implementation structure
2350 */
2351
2352struct wined3d_vertex_declaration_element
2353{
2354 const struct wined3d_format_desc *format_desc;
2355 BOOL ffp_valid;
2356 WORD input_slot;
2357 WORD offset;
2358 UINT output_slot;
2359 BYTE method;
2360 BYTE usage;
2361 BYTE usage_idx;
2362};
2363
2364typedef struct IWineD3DVertexDeclarationImpl {
2365 /* IUnknown Information */
2366 const IWineD3DVertexDeclarationVtbl *lpVtbl;
2367 LONG ref;
2368
2369 IUnknown *parent;
2370 const struct wined3d_parent_ops *parent_ops;
2371 IWineD3DDeviceImpl *device;
2372
2373 struct wined3d_vertex_declaration_element *elements;
2374 UINT element_count;
2375
2376 DWORD streams[MAX_STREAMS];
2377 UINT num_streams;
2378 BOOL position_transformed;
2379 BOOL half_float_conv_needed;
2380} IWineD3DVertexDeclarationImpl;
2381
2382HRESULT vertexdeclaration_init(IWineD3DVertexDeclarationImpl *declaration, IWineD3DDeviceImpl *device,
2383 const WINED3DVERTEXELEMENT *elements, UINT element_count,
2384 IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2385
2386/*****************************************************************************
2387 * IWineD3DStateBlock implementation structure
2388 */
2389
2390/* Internal state Block for Begin/End/Capture/Create/Apply info */
2391/* Note: Very long winded but gl Lists are not flexible enough */
2392/* to resolve everything we need, so doing it manually for now */
2393typedef struct SAVEDSTATES {
2394 DWORD transform[(HIGHEST_TRANSFORMSTATE >> 5) + 1];
2395 WORD streamSource; /* MAX_STREAMS, 16 */
2396 WORD streamFreq; /* MAX_STREAMS, 16 */
2397 DWORD renderState[(WINEHIGHEST_RENDER_STATE >> 5) + 1];
2398 DWORD textureState[MAX_TEXTURES]; /* WINED3D_HIGHEST_TEXTURE_STATE + 1, 18 */
2399 WORD samplerState[MAX_COMBINED_SAMPLERS]; /* WINED3D_HIGHEST_SAMPLER_STATE + 1, 14 */
2400 DWORD clipplane; /* WINED3DMAXUSERCLIPPLANES, 32 */
2401 WORD pixelShaderConstantsB; /* MAX_CONST_B, 16 */
2402 WORD pixelShaderConstantsI; /* MAX_CONST_I, 16 */
2403 BOOL *pixelShaderConstantsF;
2404 WORD vertexShaderConstantsB; /* MAX_CONST_B, 16 */
2405 WORD vertexShaderConstantsI; /* MAX_CONST_I, 16 */
2406 BOOL *vertexShaderConstantsF;
2407 DWORD textures : 20; /* MAX_COMBINED_SAMPLERS, 20 */
2408 DWORD primitive_type : 1;
2409 DWORD indices : 1;
2410 DWORD material : 1;
2411 DWORD viewport : 1;
2412 DWORD vertexDecl : 1;
2413 DWORD pixelShader : 1;
2414 DWORD vertexShader : 1;
2415 DWORD scissorRect : 1;
2416 DWORD padding : 4;
2417} SAVEDSTATES;
2418
2419struct StageState {
2420 DWORD stage;
2421 DWORD state;
2422};
2423
2424struct IWineD3DStateBlockImpl
2425{
2426 /* IUnknown fields */
2427 const IWineD3DStateBlockVtbl *lpVtbl;
2428 LONG ref; /* Note: Ref counting not required */
2429
2430 /* IWineD3DStateBlock information */
2431 IWineD3DDeviceImpl *device;
2432 WINED3DSTATEBLOCKTYPE blockType;
2433
2434 /* Array indicating whether things have been set or changed */
2435 SAVEDSTATES changed;
2436
2437 /* Vertex Shader Declaration */
2438 IWineD3DVertexDeclaration *vertexDecl;
2439
2440 IWineD3DVertexShader *vertexShader;
2441
2442 /* Vertex Shader Constants */
2443 BOOL vertexShaderConstantB[MAX_CONST_B];
2444 INT vertexShaderConstantI[MAX_CONST_I * 4];
2445 float *vertexShaderConstantF;
2446
2447 /* primitive type */
2448 GLenum gl_primitive_type;
2449
2450 /* Stream Source */
2451 BOOL streamIsUP;
2452 UINT streamStride[MAX_STREAMS];
2453 UINT streamOffset[MAX_STREAMS + 1 /* tesselated pseudo-stream */ ];
2454 IWineD3DBuffer *streamSource[MAX_STREAMS];
2455 UINT streamFreq[MAX_STREAMS + 1];
2456 UINT streamFlags[MAX_STREAMS + 1]; /*0 | WINED3DSTREAMSOURCE_INSTANCEDATA | WINED3DSTREAMSOURCE_INDEXEDDATA */
2457
2458 /* Indices */
2459 IWineD3DBuffer* pIndexData;
2460 WINED3DFORMAT IndexFmt;
2461 INT baseVertexIndex;
2462 INT loadBaseVertexIndex; /* non-indexed drawing needs 0 here, indexed baseVertexIndex */
2463
2464 /* Transform */
2465 WINED3DMATRIX transforms[HIGHEST_TRANSFORMSTATE + 1];
2466
2467 /* Light hashmap . Collisions are handled using standard wine double linked lists */
2468#define LIGHTMAP_SIZE 43 /* Use of a prime number recommended. Set to 1 for a linked list! */
2469#define LIGHTMAP_HASHFUNC(x) ((x) % LIGHTMAP_SIZE) /* Primitive and simple function */
2470 struct list lightMap[LIGHTMAP_SIZE]; /* Hash map containing the lights */
2471 const struct wined3d_light_info *activeLights[MAX_ACTIVE_LIGHTS]; /* Map of opengl lights to d3d lights */
2472
2473 /* Clipping */
2474 double clipplane[MAX_CLIPPLANES][4];
2475 WINED3DCLIPSTATUS clip_status;
2476
2477 /* ViewPort */
2478 WINED3DVIEWPORT viewport;
2479
2480 /* Material */
2481 WINED3DMATERIAL material;
2482
2483 /* Pixel Shader */
2484 IWineD3DPixelShader *pixelShader;
2485
2486 /* Pixel Shader Constants */
2487 BOOL pixelShaderConstantB[MAX_CONST_B];
2488 INT pixelShaderConstantI[MAX_CONST_I * 4];
2489 float *pixelShaderConstantF;
2490
2491 /* RenderState */
2492 DWORD renderState[WINEHIGHEST_RENDER_STATE + 1];
2493
2494 /* Texture */
2495 IWineD3DBaseTexture *textures[MAX_COMBINED_SAMPLERS];
2496
2497 /* Texture State Stage */
2498 DWORD textureState[MAX_TEXTURES][WINED3D_HIGHEST_TEXTURE_STATE + 1];
2499 DWORD lowest_disabled_stage;
2500 /* Sampler States */
2501 DWORD samplerState[MAX_COMBINED_SAMPLERS][WINED3D_HIGHEST_SAMPLER_STATE + 1];
2502
2503 /* Scissor test rectangle */
2504 RECT scissorRect;
2505
2506 /* Contained state management */
2507 DWORD contained_render_states[WINEHIGHEST_RENDER_STATE + 1];
2508 unsigned int num_contained_render_states;
2509 DWORD contained_transform_states[HIGHEST_TRANSFORMSTATE + 1];
2510 unsigned int num_contained_transform_states;
2511 DWORD contained_vs_consts_i[MAX_CONST_I];
2512 unsigned int num_contained_vs_consts_i;
2513 DWORD contained_vs_consts_b[MAX_CONST_B];
2514 unsigned int num_contained_vs_consts_b;
2515 DWORD *contained_vs_consts_f;
2516 unsigned int num_contained_vs_consts_f;
2517 DWORD contained_ps_consts_i[MAX_CONST_I];
2518 unsigned int num_contained_ps_consts_i;
2519 DWORD contained_ps_consts_b[MAX_CONST_B];
2520 unsigned int num_contained_ps_consts_b;
2521 DWORD *contained_ps_consts_f;
2522 unsigned int num_contained_ps_consts_f;
2523 struct StageState contained_tss_states[MAX_TEXTURES * (WINED3D_HIGHEST_TEXTURE_STATE + 1)];
2524 unsigned int num_contained_tss_states;
2525 struct StageState contained_sampler_states[MAX_COMBINED_SAMPLERS * WINED3D_HIGHEST_SAMPLER_STATE];
2526 unsigned int num_contained_sampler_states;
2527};
2528
2529HRESULT stateblock_init(IWineD3DStateBlockImpl *stateblock,
2530 IWineD3DDeviceImpl *device, WINED3DSTATEBLOCKTYPE type) DECLSPEC_HIDDEN;
2531void stateblock_init_contained_states(IWineD3DStateBlockImpl *object) DECLSPEC_HIDDEN;
2532
2533static inline void stateblock_apply_state(DWORD state, IWineD3DStateBlockImpl *stateblock,
2534 struct wined3d_context *context)
2535{
2536 const struct StateEntry *statetable = stateblock->device->StateTable;
2537 DWORD rep = statetable[state].representative;
2538 statetable[rep].apply(rep, stateblock, context);
2539}
2540
2541/* Direct3D terminology with little modifications. We do not have an issued state
2542 * because only the driver knows about it, but we have a created state because d3d
2543 * allows GetData on a created issue, but opengl doesn't
2544 */
2545enum query_state {
2546 QUERY_CREATED,
2547 QUERY_SIGNALLED,
2548 QUERY_BUILDING
2549};
2550/*****************************************************************************
2551 * IWineD3DQueryImpl implementation structure (extends IUnknown)
2552 */
2553typedef struct IWineD3DQueryImpl
2554{
2555 const IWineD3DQueryVtbl *lpVtbl;
2556 LONG ref; /* Note: Ref counting not required */
2557
2558 IUnknown *parent;
2559 IWineD3DDeviceImpl *device;
2560
2561 /* IWineD3DQuery fields */
2562 enum query_state state;
2563 WINED3DQUERYTYPE type;
2564 /* TODO: Think about using a IUnknown instead of a void* */
2565 void *extendedData;
2566} IWineD3DQueryImpl;
2567
2568HRESULT query_init(IWineD3DQueryImpl *query, IWineD3DDeviceImpl *device,
2569 WINED3DQUERYTYPE type, IUnknown *parent) DECLSPEC_HIDDEN;
2570
2571/* IWineD3DBuffer */
2572
2573/* TODO: Add tests and support for FLOAT16_4 POSITIONT, D3DCOLOR position, other
2574 * fixed function semantics as D3DCOLOR or FLOAT16 */
2575enum wined3d_buffer_conversion_type
2576{
2577 CONV_NONE,
2578 CONV_D3DCOLOR,
2579 CONV_POSITIONT,
2580 CONV_FLOAT16_2, /* Also handles FLOAT16_4 */
2581};
2582
2583struct wined3d_map_range
2584{
2585 UINT offset;
2586 UINT size;
2587};
2588
2589#define WINED3D_BUFFER_OPTIMIZED 0x01 /* Optimize has been called for the buffer */
2590#define WINED3D_BUFFER_HASDESC 0x02 /* A vertex description has been found */
2591#define WINED3D_BUFFER_CREATEBO 0x04 /* Attempt to create a buffer object next PreLoad */
2592#define WINED3D_BUFFER_DOUBLEBUFFER 0x08 /* Use a vbo and local allocated memory */
2593#define WINED3D_BUFFER_FLUSH 0x10 /* Manual unmap flushing */
2594#define WINED3D_BUFFER_DISCARD 0x20 /* A DISCARD lock has occurred since the last PreLoad */
2595#define WINED3D_BUFFER_NOSYNC 0x40 /* All locks since the last PreLoad had NOOVERWRITE set */
2596#define WINED3D_BUFFER_APPLESYNC 0x80 /* Using sync as in GL_APPLE_flush_buffer_range */
2597
2598struct wined3d_buffer
2599{
2600 const struct IWineD3DBufferVtbl *vtbl;
2601 IWineD3DResourceClass resource;
2602
2603 struct wined3d_buffer_desc desc;
2604
2605 GLuint buffer_object;
2606 GLenum buffer_object_usage;
2607 GLenum buffer_type_hint;
2608 UINT buffer_object_size;
2609 LONG bind_count;
2610 DWORD flags;
2611
2612 LONG lock_count;
2613 struct wined3d_map_range *maps;
2614 ULONG maps_size, modified_areas;
2615 struct wined3d_event_query *query;
2616
2617 /* conversion stuff */
2618 UINT decl_change_count, full_conversion_count;
2619 UINT draw_count;
2620 UINT stride; /* 0 if no conversion */
2621 UINT conversion_stride; /* 0 if no shifted conversion */
2622 enum wined3d_buffer_conversion_type *conversion_map; /* NULL if no conversion */
2623 /* Extra load offsets, for FLOAT16 conversion */
2624 UINT *conversion_shift; /* NULL if no shifted conversion */
2625};
2626
2627const BYTE *buffer_get_memory(IWineD3DBuffer *iface, GLuint *buffer_object) DECLSPEC_HIDDEN;
2628BYTE *buffer_get_sysmem(struct wined3d_buffer *This) DECLSPEC_HIDDEN;
2629HRESULT buffer_init(struct wined3d_buffer *buffer, IWineD3DDeviceImpl *device,
2630 UINT size, DWORD usage, WINED3DFORMAT format, WINED3DPOOL pool, GLenum bind_hint,
2631 const char *data, IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2632
2633/* IWineD3DRendertargetView */
2634struct wined3d_rendertarget_view
2635{
2636 const struct IWineD3DRendertargetViewVtbl *vtbl;
2637 LONG refcount;
2638
2639 IWineD3DResource *resource;
2640 IUnknown *parent;
2641};
2642
2643void wined3d_rendertarget_view_init(struct wined3d_rendertarget_view *view,
2644 IWineD3DResource *resource, IUnknown *parent) DECLSPEC_HIDDEN;
2645
2646/*****************************************************************************
2647 * IWineD3DSwapChainImpl implementation structure (extends IUnknown)
2648 */
2649
2650struct IWineD3DSwapChainImpl
2651{
2652 /*IUnknown part*/
2653 const IWineD3DSwapChainVtbl *lpVtbl;
2654 LONG ref; /* Note: Ref counting not required */
2655
2656 IUnknown *parent;
2657 IWineD3DDeviceImpl *device;
2658
2659 /* IWineD3DSwapChain fields */
2660 IWineD3DSurface **backBuffer;
2661 IWineD3DSurface *frontBuffer;
2662 WINED3DPRESENT_PARAMETERS presentParms;
2663 DWORD orig_width, orig_height;
2664 WINED3DFORMAT orig_fmt;
2665 WINED3DGAMMARAMP orig_gamma;
2666 BOOL render_to_fbo;
2667 const struct wined3d_format_desc *ds_format;
2668
2669 long prev_time, frames; /* Performance tracking */
2670 unsigned int vSyncCounter;
2671
2672#ifndef VBOX_WITH_WDDM
2673 struct wined3d_context **context;
2674 unsigned int num_contexts;
2675#endif
2676
2677 HWND win_handle;
2678 HWND device_window;
2679#ifdef VBOX_WITH_WDDM
2680 HDC hDC;
2681#endif
2682};
2683
2684const IWineD3DSwapChainVtbl IWineGDISwapChain_Vtbl DECLSPEC_HIDDEN;
2685void x11_copy_to_screen(IWineD3DSwapChainImpl *This, const RECT *rc) DECLSPEC_HIDDEN;
2686
2687HRESULT WINAPI IWineD3DBaseSwapChainImpl_QueryInterface(IWineD3DSwapChain *iface,
2688 REFIID riid, LPVOID *ppobj) DECLSPEC_HIDDEN;
2689ULONG WINAPI IWineD3DBaseSwapChainImpl_AddRef(IWineD3DSwapChain *iface) DECLSPEC_HIDDEN;
2690ULONG WINAPI IWineD3DBaseSwapChainImpl_Release(IWineD3DSwapChain *iface) DECLSPEC_HIDDEN;
2691HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetParent(IWineD3DSwapChain *iface, IUnknown **ppParent) DECLSPEC_HIDDEN;
2692HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetFrontBufferData(IWineD3DSwapChain *iface,
2693 IWineD3DSurface *pDestSurface) DECLSPEC_HIDDEN;
2694HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetBackBuffer(IWineD3DSwapChain *iface, UINT iBackBuffer,
2695 WINED3DBACKBUFFER_TYPE Type, IWineD3DSurface **ppBackBuffer) DECLSPEC_HIDDEN;
2696HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetRasterStatus(IWineD3DSwapChain *iface,
2697 WINED3DRASTER_STATUS *pRasterStatus) DECLSPEC_HIDDEN;
2698HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetDisplayMode(IWineD3DSwapChain *iface,
2699 WINED3DDISPLAYMODE *pMode) DECLSPEC_HIDDEN;
2700HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetDevice(IWineD3DSwapChain *iface,
2701 IWineD3DDevice **ppDevice) DECLSPEC_HIDDEN;
2702HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetPresentParameters(IWineD3DSwapChain *iface,
2703 WINED3DPRESENT_PARAMETERS *pPresentationParameters) DECLSPEC_HIDDEN;
2704HRESULT WINAPI IWineD3DBaseSwapChainImpl_SetGammaRamp(IWineD3DSwapChain *iface,
2705 DWORD Flags, const WINED3DGAMMARAMP *pRamp) DECLSPEC_HIDDEN;
2706HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetGammaRamp(IWineD3DSwapChain *iface,
2707 WINED3DGAMMARAMP *pRamp) DECLSPEC_HIDDEN;
2708
2709struct wined3d_context *swapchain_create_context_for_thread(IWineD3DSwapChain *iface) DECLSPEC_HIDDEN;
2710HRESULT swapchain_init(IWineD3DSwapChainImpl *swapchain, WINED3DSURFTYPE surface_type,
2711 IWineD3DDeviceImpl *device, WINED3DPRESENT_PARAMETERS *present_parameters, IUnknown *parent) DECLSPEC_HIDDEN;
2712void swapchain_restore_fullscreen_window(IWineD3DSwapChainImpl *swapchain) DECLSPEC_HIDDEN;
2713void swapchain_setup_fullscreen_window(IWineD3DSwapChainImpl *swapchain, UINT w, UINT h) DECLSPEC_HIDDEN;
2714
2715#define DEFAULT_REFRESH_RATE 0
2716
2717/*****************************************************************************
2718 * Utility function prototypes
2719 */
2720
2721/* Trace routines */
2722const char *debug_d3dformat(WINED3DFORMAT fmt) DECLSPEC_HIDDEN;
2723const char *debug_d3ddevicetype(WINED3DDEVTYPE devtype) DECLSPEC_HIDDEN;
2724const char *debug_d3dresourcetype(WINED3DRESOURCETYPE res) DECLSPEC_HIDDEN;
2725const char *debug_d3dusage(DWORD usage) DECLSPEC_HIDDEN;
2726const char *debug_d3dusagequery(DWORD usagequery) DECLSPEC_HIDDEN;
2727const char *debug_d3ddeclmethod(WINED3DDECLMETHOD method) DECLSPEC_HIDDEN;
2728const char *debug_d3ddeclusage(BYTE usage) DECLSPEC_HIDDEN;
2729const char *debug_d3dprimitivetype(WINED3DPRIMITIVETYPE PrimitiveType) DECLSPEC_HIDDEN;
2730const char *debug_d3drenderstate(DWORD state) DECLSPEC_HIDDEN;
2731const char *debug_d3dsamplerstate(DWORD state) DECLSPEC_HIDDEN;
2732const char *debug_d3dstate(DWORD state) DECLSPEC_HIDDEN;
2733const char *debug_d3dtexturefiltertype(WINED3DTEXTUREFILTERTYPE filter_type) DECLSPEC_HIDDEN;
2734const char *debug_d3dtexturestate(DWORD state) DECLSPEC_HIDDEN;
2735const char *debug_d3dtstype(WINED3DTRANSFORMSTATETYPE tstype) DECLSPEC_HIDDEN;
2736const char *debug_d3dpool(WINED3DPOOL pool) DECLSPEC_HIDDEN;
2737const char *debug_fbostatus(GLenum status) DECLSPEC_HIDDEN;
2738const char *debug_glerror(GLenum error) DECLSPEC_HIDDEN;
2739const char *debug_d3dbasis(WINED3DBASISTYPE basis) DECLSPEC_HIDDEN;
2740const char *debug_d3ddegree(WINED3DDEGREETYPE order) DECLSPEC_HIDDEN;
2741const char *debug_d3dtop(WINED3DTEXTUREOP d3dtop) DECLSPEC_HIDDEN;
2742void dump_color_fixup_desc(struct color_fixup_desc fixup) DECLSPEC_HIDDEN;
2743const char *debug_surflocation(DWORD flag) DECLSPEC_HIDDEN;
2744
2745/* Color conversion routines */
2746DWORD color_convert_argb_to_fmt(DWORD color, WINED3DFORMAT destfmt) DECLSPEC_HIDDEN;
2747
2748/* Routines for GL <-> D3D values */
2749GLenum StencilOp(DWORD op) DECLSPEC_HIDDEN;
2750GLenum CompareFunc(DWORD func) DECLSPEC_HIDDEN;
2751BOOL is_invalid_op(IWineD3DDeviceImpl *This, int stage, WINED3DTEXTUREOP op,
2752 DWORD arg1, DWORD arg2, DWORD arg3) DECLSPEC_HIDDEN;
2753void set_tex_op_nvrc(IWineD3DDevice *iface, BOOL is_alpha, int stage, WINED3DTEXTUREOP op,
2754 DWORD arg1, DWORD arg2, DWORD arg3, INT texture_idx, DWORD dst) DECLSPEC_HIDDEN;
2755void set_texture_matrix(const float *smat, DWORD flags, BOOL calculatedCoords,
2756 BOOL transformed, WINED3DFORMAT coordtype, BOOL ffp_can_disable_proj) DECLSPEC_HIDDEN;
2757void texture_activate_dimensions(DWORD stage, IWineD3DStateBlockImpl *stateblock,
2758 struct wined3d_context *context) DECLSPEC_HIDDEN;
2759void sampler_texdim(DWORD state, IWineD3DStateBlockImpl *stateblock,
2760 struct wined3d_context *context) DECLSPEC_HIDDEN;
2761void tex_alphaop(DWORD state, IWineD3DStateBlockImpl *stateblock,
2762 struct wined3d_context *context) DECLSPEC_HIDDEN;
2763void apply_pixelshader(DWORD state, IWineD3DStateBlockImpl *stateblock,
2764 struct wined3d_context *context) DECLSPEC_HIDDEN;
2765void state_fogcolor(DWORD state, IWineD3DStateBlockImpl *stateblock,
2766 struct wined3d_context *context) DECLSPEC_HIDDEN;
2767void state_fogdensity(DWORD state, IWineD3DStateBlockImpl *stateblock,
2768 struct wined3d_context *context) DECLSPEC_HIDDEN;
2769void state_fogstartend(DWORD state, IWineD3DStateBlockImpl *stateblock,
2770 struct wined3d_context *context) DECLSPEC_HIDDEN;
2771void state_fog_fragpart(DWORD state, IWineD3DStateBlockImpl *stateblock,
2772 struct wined3d_context *context) DECLSPEC_HIDDEN;
2773
2774void surface_add_dirty_rect(IWineD3DSurface *iface, const RECT *dirty_rect) DECLSPEC_HIDDEN;
2775GLenum surface_get_gl_buffer(IWineD3DSurface *iface) DECLSPEC_HIDDEN;
2776void surface_load_ds_location(IWineD3DSurface *iface, struct wined3d_context *context, DWORD location) DECLSPEC_HIDDEN;
2777void surface_modify_ds_location(IWineD3DSurface *iface, DWORD location) DECLSPEC_HIDDEN;
2778void surface_set_compatible_renderbuffer(IWineD3DSurface *iface,
2779 unsigned int width, unsigned int height) DECLSPEC_HIDDEN;
2780void surface_set_texture_name(IWineD3DSurface *iface, GLuint name, BOOL srgb_name) DECLSPEC_HIDDEN;
2781void surface_set_texture_target(IWineD3DSurface *iface, GLenum target) DECLSPEC_HIDDEN;
2782
2783BOOL getColorBits(const struct wined3d_format_desc *format_desc,
2784 short *redSize, short *greenSize, short *blueSize, short *alphaSize, short *totalSize) DECLSPEC_HIDDEN;
2785BOOL getDepthStencilBits(const struct wined3d_format_desc *format_desc,
2786 short *depthSize, short *stencilSize) DECLSPEC_HIDDEN;
2787
2788/* Math utils */
2789void multiply_matrix(WINED3DMATRIX *dest, const WINED3DMATRIX *src1, const WINED3DMATRIX *src2) DECLSPEC_HIDDEN;
2790UINT wined3d_log2i(UINT32 x) DECLSPEC_HIDDEN;
2791unsigned int count_bits(unsigned int mask) DECLSPEC_HIDDEN;
2792
2793void select_shader_mode(const struct wined3d_gl_info *gl_info, int *ps_selected, int *vs_selected) DECLSPEC_HIDDEN;
2794
2795typedef struct local_constant {
2796 struct list entry;
2797 unsigned int idx;
2798 DWORD value[4];
2799} local_constant;
2800
2801typedef struct SHADER_LIMITS {
2802 unsigned int temporary;
2803 unsigned int texcoord;
2804 unsigned int sampler;
2805 unsigned int constant_int;
2806 unsigned int constant_float;
2807 unsigned int constant_bool;
2808 unsigned int address;
2809 unsigned int packed_output;
2810 unsigned int packed_input;
2811 unsigned int attributes;
2812 unsigned int label;
2813} SHADER_LIMITS;
2814
2815/* Keeps track of details for TEX_M#x# shader opcodes which need to
2816 * maintain state information between multiple codes */
2817typedef struct SHADER_PARSE_STATE {
2818 unsigned int current_row;
2819 DWORD texcoord_w[2];
2820} SHADER_PARSE_STATE;
2821
2822#ifdef __GNUC__
2823#define PRINTF_ATTR(fmt,args) __attribute__((format (printf,fmt,args)))
2824#else
2825#define PRINTF_ATTR(fmt,args)
2826#endif
2827
2828/* Base Shader utility functions. */
2829int shader_addline(struct wined3d_shader_buffer *buffer, const char *fmt, ...) PRINTF_ATTR(2,3) DECLSPEC_HIDDEN;
2830int shader_vaddline(struct wined3d_shader_buffer *buffer, const char *fmt, va_list args) DECLSPEC_HIDDEN;
2831
2832/* Vertex shader utility functions */
2833extern BOOL vshader_get_input(IWineD3DVertexShader *iface,
2834 BYTE usage_req, BYTE usage_idx_req, unsigned int *regnum) DECLSPEC_HIDDEN;
2835
2836/*****************************************************************************
2837 * IDirect3DBaseShader implementation structure
2838 */
2839typedef struct IWineD3DBaseShaderClass
2840{
2841 LONG ref;
2842 SHADER_LIMITS limits;
2843 SHADER_PARSE_STATE parse_state;
2844 DWORD *function;
2845 UINT functionLength;
2846 UINT cur_loop_depth, cur_loop_regno;
2847 BOOL load_local_constsF;
2848 const struct wined3d_shader_frontend *frontend;
2849 void *frontend_data;
2850 void *backend_data;
2851
2852 IUnknown *parent;
2853 const struct wined3d_parent_ops *parent_ops;
2854
2855 /* Programs this shader is linked with */
2856 struct list linked_programs;
2857
2858 /* Immediate constants (override global ones) */
2859 struct list constantsB;
2860 struct list constantsF;
2861 struct list constantsI;
2862 shader_reg_maps reg_maps;
2863
2864 struct wined3d_shader_signature_element input_signature[max(MAX_ATTRIBS, MAX_REG_INPUT)];
2865 struct wined3d_shader_signature_element output_signature[MAX_REG_OUTPUT];
2866
2867 /* Pointer to the parent device */
2868 IWineD3DDevice *device;
2869 struct list shader_list_entry;
2870
2871} IWineD3DBaseShaderClass;
2872
2873typedef struct IWineD3DBaseShaderImpl {
2874 /* IUnknown */
2875 const IWineD3DBaseShaderVtbl *lpVtbl;
2876
2877 /* IWineD3DBaseShader */
2878 IWineD3DBaseShaderClass baseShader;
2879} IWineD3DBaseShaderImpl;
2880
2881void shader_buffer_clear(struct wined3d_shader_buffer *buffer) DECLSPEC_HIDDEN;
2882BOOL shader_buffer_init(struct wined3d_shader_buffer *buffer) DECLSPEC_HIDDEN;
2883void shader_buffer_free(struct wined3d_shader_buffer *buffer) DECLSPEC_HIDDEN;
2884void shader_dump_src_param(const struct wined3d_shader_src_param *param,
2885 const struct wined3d_shader_version *shader_version) DECLSPEC_HIDDEN;
2886void shader_dump_dst_param(const struct wined3d_shader_dst_param *param,
2887 const struct wined3d_shader_version *shader_version) DECLSPEC_HIDDEN;
2888unsigned int shader_find_free_input_register(const struct shader_reg_maps *reg_maps, unsigned int max) DECLSPEC_HIDDEN;
2889void shader_generate_main(IWineD3DBaseShader *iface, struct wined3d_shader_buffer *buffer,
2890 const shader_reg_maps *reg_maps, const DWORD *pFunction, void *backend_ctx) DECLSPEC_HIDDEN;
2891BOOL shader_match_semantic(const char *semantic_name, WINED3DDECLUSAGE usage) DECLSPEC_HIDDEN;
2892
2893static inline BOOL shader_is_pshader_version(enum wined3d_shader_type type)
2894{
2895 return type == WINED3D_SHADER_TYPE_PIXEL;
2896}
2897
2898static inline BOOL shader_is_vshader_version(enum wined3d_shader_type type)
2899{
2900 return type == WINED3D_SHADER_TYPE_VERTEX;
2901}
2902
2903static inline BOOL shader_is_scalar(const struct wined3d_shader_register *reg)
2904{
2905 switch (reg->type)
2906 {
2907 case WINED3DSPR_RASTOUT:
2908 /* oFog & oPts */
2909 if (reg->idx != 0) return TRUE;
2910 /* oPos */
2911 return FALSE;
2912
2913 case WINED3DSPR_DEPTHOUT: /* oDepth */
2914 case WINED3DSPR_CONSTBOOL: /* b# */
2915 case WINED3DSPR_LOOP: /* aL */
2916 case WINED3DSPR_PREDICATE: /* p0 */
2917 return TRUE;
2918
2919 case WINED3DSPR_MISCTYPE:
2920 switch(reg->idx)
2921 {
2922 case 0: /* vPos */
2923 return FALSE;
2924 case 1: /* vFace */
2925 return TRUE;
2926 default:
2927 return FALSE;
2928 }
2929
2930 case WINED3DSPR_IMMCONST:
2931 switch(reg->immconst_type)
2932 {
2933 case WINED3D_IMMCONST_FLOAT:
2934 return TRUE;
2935 default:
2936 return FALSE;
2937 }
2938
2939 default:
2940 return FALSE;
2941 }
2942}
2943
2944static inline BOOL shader_constant_is_local(IWineD3DBaseShaderImpl* This, DWORD reg) {
2945 local_constant* lconst;
2946
2947 if(This->baseShader.load_local_constsF) return FALSE;
2948 LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry) {
2949 if(lconst->idx == reg) return TRUE;
2950 }
2951 return FALSE;
2952
2953}
2954
2955/*****************************************************************************
2956 * IDirect3DVertexShader implementation structures
2957 */
2958typedef struct IWineD3DVertexShaderImpl {
2959 /* IUnknown parts */
2960 const IWineD3DVertexShaderVtbl *lpVtbl;
2961
2962 /* IWineD3DBaseShader */
2963 IWineD3DBaseShaderClass baseShader;
2964
2965 /* Vertex shader attributes. */
2966 struct wined3d_shader_attribute attributes[MAX_ATTRIBS];
2967
2968 UINT min_rel_offset, max_rel_offset;
2969 UINT rel_offset;
2970} IWineD3DVertexShaderImpl;
2971
2972void find_vs_compile_args(IWineD3DVertexShaderImpl *shader, IWineD3DStateBlockImpl *stateblock,
2973 struct vs_compile_args *args) DECLSPEC_HIDDEN;
2974HRESULT vertexshader_init(IWineD3DVertexShaderImpl *shader, IWineD3DDeviceImpl *device,
2975 const DWORD *byte_code, const struct wined3d_shader_signature *output_signature,
2976 IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2977
2978struct wined3d_geometryshader
2979{
2980 const struct IWineD3DGeometryShaderVtbl *vtbl;
2981 IWineD3DBaseShaderClass base_shader;
2982};
2983
2984HRESULT geometryshader_init(struct wined3d_geometryshader *shader, IWineD3DDeviceImpl *device,
2985 const DWORD *byte_code, const struct wined3d_shader_signature *output_signature,
2986 IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
2987
2988/*****************************************************************************
2989 * IDirect3DPixelShader implementation structure
2990 */
2991
2992/* Using additional shader constants (uniforms in GLSL / program environment
2993 * or local parameters in ARB) is costly:
2994 * ARB only knows float4 parameters and GLSL compiler are not really smart
2995 * when it comes to efficiently pack float2 uniforms, so no space is wasted
2996 * (in fact most compilers map a float2 to a full float4 uniform).
2997 *
2998 * For NP2 texcoord fixup we only need 2 floats (width and height) for each
2999 * 2D texture used in the shader. We therefore pack fixup info for 2 textures
3000 * into a single shader constant (uniform / program parameter).
3001 *
3002 * This structure is shared between the GLSL and the ARB backend.*/
3003struct ps_np2fixup_info {
3004 unsigned char idx[MAX_FRAGMENT_SAMPLERS]; /* indices to the real constant */
3005 WORD active; /* bitfield indicating if we can apply the fixup */
3006 WORD num_consts;
3007};
3008
3009typedef struct IWineD3DPixelShaderImpl {
3010 /* IUnknown parts */
3011 const IWineD3DPixelShaderVtbl *lpVtbl;
3012
3013 /* IWineD3DBaseShader */
3014 IWineD3DBaseShaderClass baseShader;
3015
3016 /* Pixel shader input semantics */
3017 DWORD input_reg_map[MAX_REG_INPUT];
3018 BOOL input_reg_used[MAX_REG_INPUT];
3019 unsigned int declared_in_count;
3020
3021 /* Some information about the shader behavior */
3022 char vpos_uniform;
3023
3024 BOOL color0_mov;
3025 DWORD color0_reg;
3026
3027} IWineD3DPixelShaderImpl;
3028
3029HRESULT pixelshader_init(IWineD3DPixelShaderImpl *shader, IWineD3DDeviceImpl *device,
3030 const DWORD *byte_code, const struct wined3d_shader_signature *output_signature,
3031 IUnknown *parent, const struct wined3d_parent_ops *parent_ops) DECLSPEC_HIDDEN;
3032void pixelshader_update_samplers(struct shader_reg_maps *reg_maps,
3033 IWineD3DBaseTexture * const *textures) DECLSPEC_HIDDEN;
3034void find_ps_compile_args(IWineD3DPixelShaderImpl *shader, IWineD3DStateBlockImpl *stateblock,
3035 struct ps_compile_args *args) DECLSPEC_HIDDEN;
3036
3037/* sRGB correction constants */
3038static const float srgb_cmp = 0.0031308f;
3039static const float srgb_mul_low = 12.92f;
3040static const float srgb_pow = 0.41666f;
3041static const float srgb_mul_high = 1.055f;
3042static const float srgb_sub_high = 0.055f;
3043
3044/*****************************************************************************
3045 * IWineD3DPalette implementation structure
3046 */
3047struct IWineD3DPaletteImpl {
3048 /* IUnknown parts */
3049 const IWineD3DPaletteVtbl *lpVtbl;
3050 LONG ref;
3051
3052 IUnknown *parent;
3053 IWineD3DDeviceImpl *device;
3054
3055 /* IWineD3DPalette */
3056 HPALETTE hpal;
3057 WORD palVersion; /*| */
3058 WORD palNumEntries; /*| LOGPALETTE */
3059 PALETTEENTRY palents[256]; /*| */
3060 /* This is to store the palette in 'screen format' */
3061 int screen_palents[256];
3062 DWORD Flags;
3063};
3064
3065HRESULT wined3d_palette_init(IWineD3DPaletteImpl *palette, IWineD3DDeviceImpl *device,
3066 DWORD flags, const PALETTEENTRY *entries, IUnknown *parent) DECLSPEC_HIDDEN;
3067
3068/* DirectDraw utility functions */
3069extern WINED3DFORMAT pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN;
3070
3071/*****************************************************************************
3072 * Pixel format management
3073 */
3074
3075/* WineD3D pixel format flags */
3076#define WINED3DFMT_FLAG_POSTPIXELSHADER_BLENDING 0x1
3077#define WINED3DFMT_FLAG_FILTERING 0x2
3078#define WINED3DFMT_FLAG_DEPTH 0x4
3079#define WINED3DFMT_FLAG_STENCIL 0x8
3080#define WINED3DFMT_FLAG_RENDERTARGET 0x10
3081#define WINED3DFMT_FLAG_FOURCC 0x20
3082#define WINED3DFMT_FLAG_FBO_ATTACHABLE 0x40
3083#define WINED3DFMT_FLAG_COMPRESSED 0x80
3084#define WINED3DFMT_FLAG_GETDC 0x100
3085#define WINED3DFMT_FLAG_FLOAT 0x200
3086
3087struct wined3d_format_desc
3088{
3089 WINED3DFORMAT format;
3090 DWORD red_mask;
3091 DWORD green_mask;
3092 DWORD blue_mask;
3093 DWORD alpha_mask;
3094 UINT byte_count;
3095 WORD depth_size;
3096 WORD stencil_size;
3097
3098 UINT block_width;
3099 UINT block_height;
3100 UINT block_byte_count;
3101
3102 enum wined3d_ffp_emit_idx emit_idx;
3103 GLint component_count;
3104 GLenum gl_vtx_type;
3105 GLint gl_vtx_format;
3106 GLboolean gl_normalized;
3107 unsigned int component_size;
3108
3109 GLint glInternal;
3110 GLint glGammaInternal;
3111 GLint rtInternal;
3112 GLint glFormat;
3113 GLint glType;
3114 UINT conv_byte_count;
3115 unsigned int Flags;
3116 float heightscale;
3117 struct color_fixup_desc color_fixup;
3118 void (*convert)(const BYTE *src, BYTE *dst, UINT pitch, UINT width, UINT height);
3119};
3120
3121const struct wined3d_format_desc *getFormatDescEntry(WINED3DFORMAT fmt,
3122 const struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
3123
3124static inline BOOL use_vs(IWineD3DStateBlockImpl *stateblock)
3125{
3126 /* Check stateblock->vertexDecl to allow this to be used from
3127 * IWineD3DDeviceImpl_FindTexUnitMap(). This is safe because
3128 * stateblock->vertexShader implies a vertex declaration instead of ddraw
3129 * style strided data. */
3130 return (stateblock->vertexShader
3131 && !((IWineD3DVertexDeclarationImpl *)stateblock->vertexDecl)->position_transformed
3132 && stateblock->device->vs_selected_mode != SHADER_NONE);
3133}
3134
3135static inline BOOL use_ps(IWineD3DStateBlockImpl *stateblock)
3136{
3137 return (stateblock->pixelShader && stateblock->device->ps_selected_mode != SHADER_NONE);
3138}
3139
3140void stretch_rect_fbo(IWineD3DDevice *iface, IWineD3DSurface *src_surface,
3141 const RECT *src_rect, IWineD3DSurface *dst_surface, const RECT *dst_rect,
3142 const WINED3DTEXTUREFILTERTYPE filter) DECLSPEC_HIDDEN;
3143
3144/* The WNDCLASS-Name for the fake window which we use to retrieve the GL capabilities */
3145#define WINED3D_OPENGL_WINDOW_CLASS_NAME "WineD3D_OpenGL"
3146
3147#define WINEMAKEFOURCC(ch0, ch1, ch2, ch3) \
3148 ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
3149 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
3150
3151#define MAKEDWORD_VERSION(maj, min) (((maj & 0xffff) << 16) | (min & 0xffff))
3152
3153#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette