push 18e7434c914c4b496a7d961dbc3fc7a912612215
[wine/hacks.git] / dlls / wined3d / wined3d_private.h
blobf4b81f7b27e48be2c93ec5eeba5df1a4b1d733dd
1 /*
2 * Direct3D wine internal private include file
4 * Copyright 2002-2003 The wine-d3d team
5 * Copyright 2002-2003 Raphael Junqueira
6 * Copyright 2004 Jason Edmeades
7 * Copyright 2005 Oliver Stieber
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.
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.
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
24 #ifndef __WINE_WINED3D_PRIVATE_H
25 #define __WINE_WINED3D_PRIVATE_H
27 #include <stdarg.h>
28 #include <math.h>
29 #define NONAMELESSUNION
30 #define NONAMELESSSTRUCT
31 #define COBJMACROS
32 #include "windef.h"
33 #include "winbase.h"
34 #include "winreg.h"
35 #include "wingdi.h"
36 #include "winuser.h"
37 #include "wine/debug.h"
38 #include "wine/unicode.h"
40 #include "wined3d_private_types.h"
41 #include "wine/wined3d_interface.h"
42 #include "wine/wined3d_caps.h"
43 #include "wine/wined3d_gl.h"
44 #include "wine/list.h"
46 /* Hash table functions */
47 typedef unsigned int (hash_function_t)(void *key);
48 typedef BOOL (compare_function_t)(void *keya, void *keyb);
50 struct hash_table_entry_t {
51 void *key;
52 void *value;
53 unsigned int hash;
54 struct list entry;
57 struct hash_table_t {
58 hash_function_t *hash_function;
59 compare_function_t *compare_function;
60 struct list *buckets;
61 unsigned int bucket_count;
62 struct hash_table_entry_t *entries;
63 unsigned int entry_count;
64 struct list free_entries;
65 unsigned int count;
66 unsigned int grow_size;
67 unsigned int shrink_size;
70 struct hash_table_t *hash_table_create(hash_function_t *hash_function, compare_function_t *compare_function);
71 void hash_table_destroy(struct hash_table_t *table, void (*free_value)(void *value, void *cb), void *cb);
72 void *hash_table_get(struct hash_table_t *table, void *key);
73 void hash_table_put(struct hash_table_t *table, void *key, void *value);
74 void hash_table_remove(struct hash_table_t *table, void *key);
76 /* Device caps */
77 #define MAX_PALETTES 65536
78 #define MAX_STREAMS 16
79 #define MAX_TEXTURES 8
80 #define MAX_FRAGMENT_SAMPLERS 16
81 #define MAX_VERTEX_SAMPLERS 4
82 #define MAX_COMBINED_SAMPLERS (MAX_FRAGMENT_SAMPLERS + MAX_VERTEX_SAMPLERS)
83 #define MAX_ACTIVE_LIGHTS 8
84 #define MAX_CLIPPLANES WINED3DMAXUSERCLIPPLANES
85 #define MAX_LEVELS 256
87 #define MAX_CONST_I 16
88 #define MAX_CONST_B 16
90 /* Used for CreateStateBlock */
91 #define NUM_SAVEDPIXELSTATES_R 35
92 #define NUM_SAVEDPIXELSTATES_T 18
93 #define NUM_SAVEDPIXELSTATES_S 12
94 #define NUM_SAVEDVERTEXSTATES_R 34
95 #define NUM_SAVEDVERTEXSTATES_T 2
96 #define NUM_SAVEDVERTEXSTATES_S 1
98 extern const DWORD SavedPixelStates_R[NUM_SAVEDPIXELSTATES_R];
99 extern const DWORD SavedPixelStates_T[NUM_SAVEDPIXELSTATES_T];
100 extern const DWORD SavedPixelStates_S[NUM_SAVEDPIXELSTATES_S];
101 extern const DWORD SavedVertexStates_R[NUM_SAVEDVERTEXSTATES_R];
102 extern const DWORD SavedVertexStates_T[NUM_SAVEDVERTEXSTATES_T];
103 extern const DWORD SavedVertexStates_S[NUM_SAVEDVERTEXSTATES_S];
105 typedef enum _WINELOOKUP {
106 WINELOOKUP_WARPPARAM = 0,
107 MAX_LOOKUPS = 1
108 } WINELOOKUP;
110 extern int minLookup[MAX_LOOKUPS];
111 extern int maxLookup[MAX_LOOKUPS];
112 extern DWORD *stateLookup[MAX_LOOKUPS];
114 typedef DWORD magLookup_t[WINED3DTEXF_ANISOTROPIC + 1];
115 extern magLookup_t magLookup;
116 extern magLookup_t magLookup_noFilter;
118 typedef DWORD minMipLookup_t[WINED3DTEXF_ANISOTROPIC + 1][WINED3DTEXF_LINEAR + 1];
119 extern minMipLookup_t minMipLookup;
120 extern minMipLookup_t minMipLookup_noFilter;
122 void init_type_lookup(WineD3D_GL_Info *gl_info);
123 #define WINED3D_ATR_TYPE(type) GLINFO_LOCATION.glTypeLookup[type].d3dType
124 #define WINED3D_ATR_SIZE(type) GLINFO_LOCATION.glTypeLookup[type].size
125 #define WINED3D_ATR_GLTYPE(type) GLINFO_LOCATION.glTypeLookup[type].glType
126 #define WINED3D_ATR_NORMALIZED(type) GLINFO_LOCATION.glTypeLookup[type].normalized
127 #define WINED3D_ATR_TYPESIZE(type) GLINFO_LOCATION.glTypeLookup[type].typesize
129 /* float_16_to_32() and float_32_to_16() (see implementation in
130 * surface_base.c) convert 16 bit floats in the FLOAT16 data type
131 * to standard C floats and vice versa. They do not depend on the encoding
132 * of the C float, so they are platform independent, but slow. On x86 and
133 * other IEEE 754 compliant platforms the conversion can be accelerated by
134 * bit shifting the exponent and mantissa. There are also some SSE-based
135 * assembly routines out there.
137 * See GL_NV_half_float for a reference of the FLOAT16 / GL_HALF format
139 static inline float float_16_to_32(const unsigned short *in) {
140 const unsigned short s = ((*in) & 0x8000);
141 const unsigned short e = ((*in) & 0x7C00) >> 10;
142 const unsigned short m = (*in) & 0x3FF;
143 const float sgn = (s ? -1.0 : 1.0);
145 if(e == 0) {
146 if(m == 0) return sgn * 0.0; /* +0.0 or -0.0 */
147 else return sgn * pow(2, -14.0) * ( (float) m / 1024.0);
148 } else if(e < 31) {
149 return sgn * pow(2, (float) e-15.0) * (1.0 + ((float) m / 1024.0));
150 } else {
151 if(m == 0) return sgn / 0.0; /* +INF / -INF */
152 else return 0.0 / 0.0; /* NAN */
157 * Settings
159 #define VS_NONE 0
160 #define VS_HW 1
162 #define PS_NONE 0
163 #define PS_HW 1
165 #define VBO_NONE 0
166 #define VBO_HW 1
168 #define NP2_NONE 0
169 #define NP2_REPACK 1
170 #define NP2_NATIVE 2
172 #define ORM_BACKBUFFER 0
173 #define ORM_PBUFFER 1
174 #define ORM_FBO 2
176 #define SHADER_ARB 1
177 #define SHADER_GLSL 2
178 #define SHADER_ATI 3
179 #define SHADER_NONE 4
181 #define RTL_DISABLE -1
182 #define RTL_AUTO 0
183 #define RTL_READDRAW 1
184 #define RTL_READTEX 2
185 #define RTL_TEXDRAW 3
186 #define RTL_TEXTEX 4
188 /* NOTE: When adding fields to this structure, make sure to update the default
189 * values in wined3d_main.c as well. */
190 typedef struct wined3d_settings_s {
191 /* vertex and pixel shader modes */
192 int vs_mode;
193 int ps_mode;
194 int vbo_mode;
195 /* Ideally, we don't want the user to have to request GLSL. If the hardware supports GLSL,
196 we should use it. However, until it's fully implemented, we'll leave it as a registry
197 setting for developers. */
198 BOOL glslRequested;
199 int offscreen_rendering_mode;
200 int rendertargetlock_mode;
201 /* Memory tracking and object counting */
202 unsigned int emulated_textureram;
203 char *logo;
204 int allow_multisampling;
205 } wined3d_settings_t;
207 extern wined3d_settings_t wined3d_settings;
209 /* Shader backends */
210 struct SHADER_OPCODE_ARG;
212 #define SHADER_PGMSIZE 65535
213 typedef struct SHADER_BUFFER {
214 char* buffer;
215 unsigned int bsize;
216 unsigned int lineNo;
217 BOOL newline;
218 } SHADER_BUFFER;
220 struct shader_caps {
221 DWORD VertexShaderVersion;
222 DWORD MaxVertexShaderConst;
224 DWORD PixelShaderVersion;
225 float PixelShader1xMaxValue;
227 WINED3DVSHADERCAPS2_0 VS20Caps;
228 WINED3DPSHADERCAPS2_0 PS20Caps;
230 DWORD MaxVShaderInstructionsExecuted;
231 DWORD MaxPShaderInstructionsExecuted;
232 DWORD MaxVertexShader30InstructionSlots;
233 DWORD MaxPixelShader30InstructionSlots;
236 typedef struct {
237 void (*shader_select)(IWineD3DDevice *iface, BOOL usePS, BOOL useVS);
238 void (*shader_select_depth_blt)(IWineD3DDevice *iface);
239 void (*shader_deselect_depth_blt)(IWineD3DDevice *iface);
240 void (*shader_load_constants)(IWineD3DDevice *iface, char usePS, char useVS);
241 void (*shader_cleanup)(IWineD3DDevice *iface);
242 void (*shader_color_correction)(struct SHADER_OPCODE_ARG *arg);
243 void (*shader_destroy)(IWineD3DBaseShader *iface);
244 HRESULT (*shader_alloc_private)(IWineD3DDevice *iface);
245 void (*shader_free_private)(IWineD3DDevice *iface);
246 BOOL (*shader_dirtifyable_constants)(IWineD3DDevice *iface);
247 void (*shader_generate_pshader)(IWineD3DPixelShader *iface, SHADER_BUFFER *buffer);
248 void (*shader_generate_vshader)(IWineD3DVertexShader *iface, SHADER_BUFFER *buffer);
249 void (*shader_get_caps)(WINED3DDEVTYPE devtype, WineD3D_GL_Info *gl_info, struct shader_caps *caps);
250 BOOL (*shader_conv_supported)(WINED3DFORMAT conv);
251 } shader_backend_t;
253 extern const shader_backend_t atifs_shader_backend;
254 extern const shader_backend_t glsl_shader_backend;
255 extern const shader_backend_t arb_program_shader_backend;
256 extern const shader_backend_t none_shader_backend;
258 /* GLSL shader private data */
259 struct shader_glsl_priv {
260 struct hash_table_t *glsl_program_lookup;
261 struct glsl_shader_prog_link *glsl_program;
262 GLhandleARB depth_blt_glsl_program_id;
265 /* ARB_program_shader private data */
266 struct shader_arb_priv {
267 GLuint current_vprogram_id;
268 GLuint current_fprogram_id;
269 GLuint depth_blt_vprogram_id;
270 GLuint depth_blt_fprogram_id;
271 BOOL use_arbfp_fixed_func;
272 struct hash_table_t *fragment_shaders;
275 /* X11 locking */
277 extern void (*wine_tsx11_lock_ptr)(void);
278 extern void (*wine_tsx11_unlock_ptr)(void);
280 /* As GLX relies on X, this is needed */
281 extern int num_lock;
283 #if 0
284 #define ENTER_GL() ++num_lock; if (num_lock > 1) FIXME("Recursive use of GL lock to: %d\n", num_lock); wine_tsx11_lock_ptr()
285 #define LEAVE_GL() if (num_lock != 1) FIXME("Recursive use of GL lock: %d\n", num_lock); --num_lock; wine_tsx11_unlock_ptr()
286 #else
287 #define ENTER_GL() wine_tsx11_lock_ptr()
288 #define LEAVE_GL() wine_tsx11_unlock_ptr()
289 #endif
291 /*****************************************************************************
292 * Defines
295 /* GL related defines */
296 /* ------------------ */
297 #define GL_SUPPORT(ExtName) (GLINFO_LOCATION.supported[ExtName] != 0)
298 #define GL_LIMITS(ExtName) (GLINFO_LOCATION.max_##ExtName)
299 #define GL_EXTCALL(FuncName) (GLINFO_LOCATION.FuncName)
300 #define GL_VEND(_VendName) (GLINFO_LOCATION.gl_vendor == VENDOR_##_VendName ? TRUE : FALSE)
302 #define D3DCOLOR_B_R(dw) (((dw) >> 16) & 0xFF)
303 #define D3DCOLOR_B_G(dw) (((dw) >> 8) & 0xFF)
304 #define D3DCOLOR_B_B(dw) (((dw) >> 0) & 0xFF)
305 #define D3DCOLOR_B_A(dw) (((dw) >> 24) & 0xFF)
307 #define D3DCOLOR_R(dw) (((float) (((dw) >> 16) & 0xFF)) / 255.0f)
308 #define D3DCOLOR_G(dw) (((float) (((dw) >> 8) & 0xFF)) / 255.0f)
309 #define D3DCOLOR_B(dw) (((float) (((dw) >> 0) & 0xFF)) / 255.0f)
310 #define D3DCOLOR_A(dw) (((float) (((dw) >> 24) & 0xFF)) / 255.0f)
312 #define D3DCOLORTOGLFLOAT4(dw, vec) \
313 (vec)[0] = D3DCOLOR_R(dw); \
314 (vec)[1] = D3DCOLOR_G(dw); \
315 (vec)[2] = D3DCOLOR_B(dw); \
316 (vec)[3] = D3DCOLOR_A(dw);
318 /* DirectX Device Limits */
319 /* --------------------- */
320 #define MAX_LEVELS 256 /* Maximum number of mipmap levels. Guessed at 256 */
322 #define MAX_STREAMS 16 /* Maximum possible streams - used for fixed size arrays
323 See MaxStreams in MSDN under GetDeviceCaps */
324 /* Maximum number of constants provided to the shaders */
325 #define HIGHEST_TRANSFORMSTATE 512
326 /* Highest value in WINED3DTRANSFORMSTATETYPE */
328 /* Checking of API calls */
329 /* --------------------- */
330 #define checkGLcall(A) \
332 GLint err = glGetError(); \
333 if (err == GL_NO_ERROR) { \
334 TRACE("%s call ok %s / %d\n", A, __FILE__, __LINE__); \
336 } else do { \
337 FIXME(">>>>>>>>>>>>>>>>> %s (%#x) from %s @ %s / %d\n", \
338 debug_glerror(err), err, A, __FILE__, __LINE__); \
339 err = glGetError(); \
340 } while (err != GL_NO_ERROR); \
343 /* Trace routines / diagnostics */
344 /* ---------------------------- */
346 /* Dump out a matrix and copy it */
347 #define conv_mat(mat,gl_mat) \
348 do { \
349 TRACE("%f %f %f %f\n", (mat)->u.s._11, (mat)->u.s._12, (mat)->u.s._13, (mat)->u.s._14); \
350 TRACE("%f %f %f %f\n", (mat)->u.s._21, (mat)->u.s._22, (mat)->u.s._23, (mat)->u.s._24); \
351 TRACE("%f %f %f %f\n", (mat)->u.s._31, (mat)->u.s._32, (mat)->u.s._33, (mat)->u.s._34); \
352 TRACE("%f %f %f %f\n", (mat)->u.s._41, (mat)->u.s._42, (mat)->u.s._43, (mat)->u.s._44); \
353 memcpy(gl_mat, (mat), 16 * sizeof(float)); \
354 } while (0)
356 /* Macro to dump out the current state of the light chain */
357 #define DUMP_LIGHT_CHAIN() \
359 PLIGHTINFOEL *el = This->stateBlock->lights;\
360 while (el) { \
361 TRACE("Light %p (glIndex %ld, d3dIndex %ld, enabled %d)\n", el, el->glIndex, el->OriginalIndex, el->lightEnabled);\
362 el = el->next; \
366 /* Trace vector and strided data information */
367 #define TRACE_VECTOR(name) TRACE( #name "=(%f, %f, %f, %f)\n", name.x, name.y, name.z, name.w);
368 #define TRACE_STRIDED(sd,name) TRACE( #name "=(data:%p, stride:%d, type:%d, vbo %d, stream %u)\n", \
369 sd->u.s.name.lpData, sd->u.s.name.dwStride, sd->u.s.name.dwType, sd->u.s.name.VBO, sd->u.s.name.streamNo);
371 /* Defines used for optimizations */
373 /* Only reapply what is necessary */
374 #define REAPPLY_ALPHAOP 0x0001
375 #define REAPPLY_ALL 0xFFFF
377 /* Advance declaration of structures to satisfy compiler */
378 typedef struct IWineD3DStateBlockImpl IWineD3DStateBlockImpl;
379 typedef struct IWineD3DSurfaceImpl IWineD3DSurfaceImpl;
380 typedef struct IWineD3DPaletteImpl IWineD3DPaletteImpl;
381 typedef struct IWineD3DDeviceImpl IWineD3DDeviceImpl;
383 /* Global variables */
384 extern const float identity[16];
386 /*****************************************************************************
387 * Compilable extra diagnostics
390 /* Trace information per-vertex: (extremely high amount of trace) */
391 #if 0 /* NOTE: Must be 0 in cvs */
392 # define VTRACE(A) TRACE A
393 #else
394 # define VTRACE(A)
395 #endif
397 /* Checking of per-vertex related GL calls */
398 /* --------------------- */
399 #define vcheckGLcall(A) \
401 GLint err = glGetError(); \
402 if (err == GL_NO_ERROR) { \
403 VTRACE(("%s call ok %s / %d\n", A, __FILE__, __LINE__)); \
405 } else do { \
406 FIXME(">>>>>>>>>>>>>>>>> %s (%#x) from %s @ %s / %d\n", \
407 debug_glerror(err), err, A, __FILE__, __LINE__); \
408 err = glGetError(); \
409 } while (err != GL_NO_ERROR); \
412 /* TODO: Confirm each of these works when wined3d move completed */
413 #if 0 /* NOTE: Must be 0 in cvs */
414 /* To avoid having to get gigabytes of trace, the following can be compiled in, and at the start
415 of each frame, a check is made for the existence of C:\D3DTRACE, and if it exists d3d trace
416 is enabled, and if it doesn't exist it is disabled. */
417 # define FRAME_DEBUGGING
418 /* Adding in the SINGLE_FRAME_DEBUGGING gives a trace of just what makes up a single frame, before
419 the file is deleted */
420 # if 1 /* NOTE: Must be 1 in cvs, as this is mostly more useful than a trace from program start */
421 # define SINGLE_FRAME_DEBUGGING
422 # endif
423 /* The following, when enabled, lets you see the makeup of the frame, by drawprimitive calls.
424 It can only be enabled when FRAME_DEBUGGING is also enabled
425 The contents of the back buffer are written into /tmp/backbuffer_* after each primitive
426 array is drawn. */
427 # if 0 /* NOTE: Must be 0 in cvs, as this give a lot of ppm files when compiled in */
428 # define SHOW_FRAME_MAKEUP 1
429 # endif
430 /* The following, when enabled, lets you see the makeup of the all the textures used during each
431 of the drawprimitive calls. It can only be enabled when SHOW_FRAME_MAKEUP is also enabled.
432 The contents of the textures assigned to each stage are written into
433 /tmp/texture_*_<Stage>.ppm after each primitive array is drawn. */
434 # if 0 /* NOTE: Must be 0 in cvs, as this give a lot of ppm files when compiled in */
435 # define SHOW_TEXTURE_MAKEUP 0
436 # endif
437 extern BOOL isOn;
438 extern BOOL isDumpingFrames;
439 extern LONG primCounter;
440 #endif
442 /*****************************************************************************
443 * Prototypes
446 /* Routine common to the draw primitive and draw indexed primitive routines */
447 void drawPrimitive(IWineD3DDevice *iface,
448 int PrimitiveType,
449 long NumPrimitives,
450 /* for Indexed: */
451 long StartVertexIndex,
452 UINT numberOfVertices,
453 long StartIdx,
454 short idxBytes,
455 const void *idxData,
456 int minIndex);
458 void primitiveDeclarationConvertToStridedData(
459 IWineD3DDevice *iface,
460 BOOL useVertexShaderFunction,
461 WineDirect3DVertexStridedData *strided,
462 BOOL *fixup);
464 DWORD get_flexible_vertex_size(DWORD d3dvtVertexType);
466 typedef void (WINE_GLAPI *glAttribFunc)(void *data);
467 typedef void (WINE_GLAPI *glTexAttribFunc)(GLuint unit, void *data);
468 extern glAttribFunc position_funcs[WINED3DDECLTYPE_UNUSED];
469 extern glAttribFunc diffuse_funcs[WINED3DDECLTYPE_UNUSED];
470 extern glAttribFunc specular_funcs[WINED3DDECLTYPE_UNUSED];
471 extern glAttribFunc normal_funcs[WINED3DDECLTYPE_UNUSED];
473 #define eps 1e-8
475 #define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
476 (((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)
478 void depth_copy(IWineD3DDevice *iface);
480 /* Routines and structures related to state management */
481 typedef struct WineD3DContext WineD3DContext;
482 typedef void (*APPLYSTATEFUNC)(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DContext *ctx);
484 #define STATE_RENDER(a) (a)
485 #define STATE_IS_RENDER(a) ((a) >= STATE_RENDER(1) && (a) <= STATE_RENDER(WINEHIGHEST_RENDER_STATE))
487 #define STATE_TEXTURESTAGE(stage, num) (STATE_RENDER(WINEHIGHEST_RENDER_STATE) + (stage) * WINED3D_HIGHEST_TEXTURE_STATE + (num))
488 #define STATE_IS_TEXTURESTAGE(a) ((a) >= STATE_TEXTURESTAGE(0, 1) && (a) <= STATE_TEXTURESTAGE(MAX_TEXTURES - 1, WINED3D_HIGHEST_TEXTURE_STATE))
490 /* + 1 because samplers start with 0 */
491 #define STATE_SAMPLER(num) (STATE_TEXTURESTAGE(MAX_TEXTURES - 1, WINED3D_HIGHEST_TEXTURE_STATE) + 1 + (num))
492 #define STATE_IS_SAMPLER(num) ((num) >= STATE_SAMPLER(0) && (num) <= STATE_SAMPLER(MAX_COMBINED_SAMPLERS - 1))
494 #define STATE_PIXELSHADER (STATE_SAMPLER(MAX_COMBINED_SAMPLERS - 1) + 1)
495 #define STATE_IS_PIXELSHADER(a) ((a) == STATE_PIXELSHADER)
497 #define STATE_TRANSFORM(a) (STATE_PIXELSHADER + (a))
498 #define STATE_IS_TRANSFORM(a) ((a) >= STATE_TRANSFORM(1) && (a) <= STATE_TRANSFORM(WINED3DTS_WORLDMATRIX(255)))
500 #define STATE_STREAMSRC (STATE_TRANSFORM(WINED3DTS_WORLDMATRIX(255)) + 1)
501 #define STATE_IS_STREAMSRC(a) ((a) == STATE_STREAMSRC)
502 #define STATE_INDEXBUFFER (STATE_STREAMSRC + 1)
503 #define STATE_IS_INDEXBUFFER(a) ((a) == STATE_INDEXBUFFER)
505 #define STATE_VDECL (STATE_INDEXBUFFER + 1)
506 #define STATE_IS_VDECL(a) ((a) == STATE_VDECL)
508 #define STATE_VSHADER (STATE_VDECL + 1)
509 #define STATE_IS_VSHADER(a) ((a) == STATE_VSHADER)
511 #define STATE_VIEWPORT (STATE_VSHADER + 1)
512 #define STATE_IS_VIEWPORT(a) ((a) == STATE_VIEWPORT)
514 #define STATE_VERTEXSHADERCONSTANT (STATE_VIEWPORT + 1)
515 #define STATE_PIXELSHADERCONSTANT (STATE_VERTEXSHADERCONSTANT + 1)
516 #define STATE_IS_VERTEXSHADERCONSTANT(a) ((a) == STATE_VERTEXSHADERCONSTANT)
517 #define STATE_IS_PIXELSHADERCONSTANT(a) ((a) == STATE_PIXELSHADERCONSTANT)
519 #define STATE_ACTIVELIGHT(a) (STATE_PIXELSHADERCONSTANT + (a) + 1)
520 #define STATE_IS_ACTIVELIGHT(a) ((a) >= STATE_ACTIVELIGHT(0) && (a) < STATE_ACTIVELIGHT(MAX_ACTIVE_LIGHTS))
522 #define STATE_SCISSORRECT (STATE_ACTIVELIGHT(MAX_ACTIVE_LIGHTS - 1) + 1)
523 #define STATE_IS_SCISSORRECT(a) ((a) == STATE_SCISSORRECT)
525 #define STATE_CLIPPLANE(a) (STATE_SCISSORRECT + 1 + (a))
526 #define STATE_IS_CLIPPLANE(a) ((a) >= STATE_CLIPPLANE(0) && (a) <= STATE_CLIPPLANE(MAX_CLIPPLANES - 1))
528 #define STATE_MATERIAL (STATE_CLIPPLANE(MAX_CLIPPLANES))
530 #define STATE_FRONTFACE (STATE_MATERIAL + 1)
532 #define STATE_HIGHEST (STATE_FRONTFACE)
534 struct StateEntry
536 DWORD representative;
537 APPLYSTATEFUNC apply;
540 struct StateEntryTemplate
542 DWORD state;
543 struct StateEntry content;
544 GL_SupportedExt extension;
547 struct fragment_caps {
548 DWORD PrimitiveMiscCaps;
550 DWORD TextureOpCaps;
551 DWORD MaxTextureBlendStages;
552 DWORD MaxSimultaneousTextures;
555 struct fragment_pipeline {
556 void (*enable_extension)(IWineD3DDevice *iface, BOOL enable);
557 void (*get_caps)(WINED3DDEVTYPE devtype, WineD3D_GL_Info *gl_info, struct fragment_caps *caps);
558 HRESULT (*alloc_private)(IWineD3DDevice *iface);
559 void (*free_private)(IWineD3DDevice *iface);
560 BOOL (*conv_supported)(WINED3DFORMAT conv);
561 const struct StateEntryTemplate *states;
562 BOOL ffp_proj_control;
565 extern const struct StateEntryTemplate misc_state_template[];
566 extern const struct StateEntryTemplate ffp_vertexstate_template[];
567 extern const struct fragment_pipeline ffp_fragment_pipeline;
568 extern const struct fragment_pipeline atifs_fragment_pipeline;
569 extern const struct fragment_pipeline arbfp_fragment_pipeline;
570 extern const struct fragment_pipeline nvts_fragment_pipeline;
571 extern const struct fragment_pipeline nvrc_fragment_pipeline;
573 /* "Base" state table */
574 void compile_state_table(struct StateEntry *StateTable,
575 APPLYSTATEFUNC **dev_multistate_funcs,
576 WineD3D_GL_Info *gl_info,
577 const struct StateEntryTemplate *vertex,
578 const struct fragment_pipeline *fragment,
579 const struct StateEntryTemplate *misc);
581 /* Shaders for color conversions in blits */
582 struct blit_shader {
583 HRESULT (*alloc_private)(IWineD3DDevice *iface);
584 void (*free_private)(IWineD3DDevice *iface);
585 HRESULT (*set_shader)(IWineD3DDevice *iface, WINED3DFORMAT fmt, GLenum textype, UINT width, UINT height);
586 void (*unset_shader)(IWineD3DDevice *iface);
587 BOOL (*conv_supported)(WINED3DFORMAT conv);
590 extern const struct blit_shader ffp_blit;
591 extern const struct blit_shader arbfp_blit;
593 /* The new context manager that should deal with onscreen and offscreen rendering */
594 struct WineD3DContext {
595 /* State dirtification
596 * dirtyArray is an array that contains markers for dirty states. numDirtyEntries states are dirty, their numbers are in indices
597 * 0...numDirtyEntries - 1. isStateDirty is a redundant copy of the dirtyArray. Technically only one of them would be needed,
598 * 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
599 * only numDirtyEntries array elements have to be checked, not STATE_HIGHEST states.
601 DWORD dirtyArray[STATE_HIGHEST + 1]; /* Won't get bigger than that, a state is never marked dirty 2 times */
602 DWORD numDirtyEntries;
603 DWORD isStateDirty[STATE_HIGHEST/32 + 1]; /* Bitmap to find out quickly if a state is dirty */
605 IWineD3DSurface *surface;
606 DWORD tid; /* Thread ID which owns this context at the moment */
608 /* Stores some information about the context state for optimization */
609 BOOL draw_buffer_dirty;
610 BOOL last_was_rhw; /* true iff last draw_primitive was in xyzrhw mode */
611 BOOL last_was_pshader;
612 BOOL last_was_vshader;
613 BOOL last_was_foggy_shader;
614 BOOL namedArraysLoaded, numberedArraysLoaded;
615 BOOL lastWasPow2Texture[MAX_TEXTURES];
616 GLenum tracking_parm; /* Which source is tracking current colour */
617 unsigned char num_untracked_materials;
618 GLenum untracked_materials[2];
619 BOOL last_was_blit, last_was_ckey;
620 UINT blit_w, blit_h;
621 char texShaderBumpMap;
622 BOOL fog_coord;
624 char *vshader_const_dirty, *pshader_const_dirty;
626 /* The actual opengl context */
627 HGLRC glCtx;
628 HWND win_handle;
629 HDC hdc;
630 HPBUFFERARB pbuffer;
631 BOOL isPBuffer;
632 GLint aux_buffers;
634 /* FBOs */
635 IWineD3DSurface **fbo_color_attachments;
636 IWineD3DSurface *fbo_depth_attachment;
637 GLuint fbo;
638 GLuint src_fbo;
639 GLuint dst_fbo;
642 typedef enum ContextUsage {
643 CTXUSAGE_RESOURCELOAD = 1, /* Only loads textures: No State is applied */
644 CTXUSAGE_DRAWPRIM = 2, /* OpenGL states are set up for blitting DirectDraw surfaces */
645 CTXUSAGE_BLIT = 3, /* OpenGL states are set up 3D drawing */
646 CTXUSAGE_CLEAR = 4, /* Drawable and states are set up for clearing */
647 } ContextUsage;
649 void ActivateContext(IWineD3DDeviceImpl *device, IWineD3DSurface *target, ContextUsage usage);
650 WineD3DContext *CreateContext(IWineD3DDeviceImpl *This, IWineD3DSurfaceImpl *target, HWND win, BOOL create_pbuffer, const WINED3DPRESENT_PARAMETERS *pPresentParms);
651 void DestroyContext(IWineD3DDeviceImpl *This, WineD3DContext *context);
652 void apply_fbo_state(IWineD3DDevice *iface);
654 void delete_opengl_contexts(IWineD3DDevice *iface, IWineD3DSwapChain *swapchain);
655 HRESULT create_primary_opengl_context(IWineD3DDevice *iface, IWineD3DSwapChain *swapchain);
657 /* Macros for doing basic GPU detection based on opengl capabilities */
658 #define WINE_D3D6_CAPABLE(gl_info) (gl_info->supported[ARB_MULTITEXTURE])
659 #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])
660 #define WINE_D3D8_CAPABLE(gl_info) WINE_D3D7_CAPABLE(gl_info) && (gl_info->supported[ARB_MULTISAMPLE] && gl_info->supported[ARB_TEXTURE_BORDER_CLAMP])
661 #define WINE_D3D9_CAPABLE(gl_info) WINE_D3D8_CAPABLE(gl_info) && (gl_info->supported[ARB_FRAGMENT_PROGRAM] && gl_info->supported[ARB_VERTEX_SHADER])
663 /* Default callbacks for implicit object destruction */
664 extern ULONG WINAPI D3DCB_DefaultDestroySurface(IWineD3DSurface *pSurface);
666 extern ULONG WINAPI D3DCB_DefaultDestroyVolume(IWineD3DVolume *pSurface);
668 /*****************************************************************************
669 * Internal representation of a light
671 typedef struct PLIGHTINFOEL PLIGHTINFOEL;
672 struct PLIGHTINFOEL {
673 WINED3DLIGHT OriginalParms; /* Note D3D8LIGHT == D3D9LIGHT */
674 DWORD OriginalIndex;
675 LONG glIndex;
676 BOOL changed;
677 BOOL enabledChanged;
678 BOOL enabled;
680 /* Converted parms to speed up swapping lights */
681 float lightPosn[4];
682 float lightDirn[4];
683 float exponent;
684 float cutoff;
686 struct list entry;
689 /* The default light parameters */
690 extern const WINED3DLIGHT WINED3D_default_light;
692 typedef struct WineD3D_PixelFormat
694 int iPixelFormat; /* WGL pixel format */
695 int iPixelType; /* WGL pixel type e.g. WGL_TYPE_RGBA_ARB, WGL_TYPE_RGBA_FLOAT_ARB or WGL_TYPE_COLORINDEX_ARB */
696 int redSize, greenSize, blueSize, alphaSize;
697 int depthSize, stencilSize;
698 BOOL windowDrawable;
699 BOOL pbufferDrawable;
700 BOOL doubleBuffer;
701 int auxBuffers;
702 int numSamples;
703 } WineD3D_PixelFormat;
705 /* The adapter structure */
706 typedef struct GLPixelFormatDesc GLPixelFormatDesc;
707 struct WineD3DAdapter
709 UINT num;
710 BOOL opengl;
711 POINT monitorPoint;
712 WineD3D_GL_Info gl_info;
713 const char *driver;
714 const char *description;
715 WCHAR DeviceName[CCHDEVICENAME]; /* DeviceName for use with e.g. ChangeDisplaySettings */
716 int nCfgs;
717 WineD3D_PixelFormat *cfgs;
718 BOOL brokenStencil; /* Set on cards which only offer mixed depth+stencil */
719 unsigned int TextureRam; /* Amount of texture memory both video ram + AGP/TurboCache/HyperMemory/.. */
720 unsigned int UsedTextureRam;
723 extern BOOL InitAdapters(void);
724 extern BOOL initPixelFormats(WineD3D_GL_Info *gl_info);
725 extern long WineD3DAdapterChangeGLRam(IWineD3DDeviceImpl *D3DDevice, long glram);
727 /*****************************************************************************
728 * High order patch management
730 struct WineD3DRectPatch
732 UINT Handle;
733 float *mem;
734 WineDirect3DVertexStridedData strided;
735 WINED3DRECTPATCH_INFO RectPatchInfo;
736 float numSegs[4];
737 char has_normals, has_texcoords;
738 struct list entry;
741 HRESULT tesselate_rectpatch(IWineD3DDeviceImpl *This, struct WineD3DRectPatch *patch);
743 enum projection_types
745 proj_none = 0,
746 proj_count3 = 1,
747 proj_count4 = 2
750 enum tex_types
752 tex_1d = 0,
753 tex_2d = 1,
754 tex_3d = 2,
755 tex_cube = 3,
756 tex_rect = 4
759 enum dst_arg
761 resultreg = 0,
762 tempreg = 1
765 /*****************************************************************************
766 * Fixed function pipeline replacements
768 struct texture_stage_op
770 unsigned cop : 5, aop : 5;
771 #define ARG_UNUSED 0x3f
772 unsigned carg1 : 6, carg2 : 6, carg0 : 6;
773 unsigned tex_type : 3;
774 unsigned dst : 1; /* Total of 32 bits */
775 unsigned aarg1 : 6, aarg2 : 6, aarg0 : 6;
776 unsigned projected : 2;
777 unsigned padding : 12; /* Total of 64 bits */
778 WINED3DFORMAT color_correction;
781 struct ffp_settings {
782 struct texture_stage_op op[MAX_TEXTURES];
783 enum {
784 FOG_OFF,
785 FOG_LINEAR,
786 FOG_EXP,
787 FOG_EXP2
788 } fog;
789 unsigned char sRGB_write;
792 struct ffp_desc
794 struct ffp_settings settings;
797 void gen_ffp_op(IWineD3DStateBlockImpl *stateblock, struct ffp_settings *settings, BOOL ignore_textype);
798 struct ffp_desc *find_ffp_shader(struct hash_table_t *fragment_shaders, struct ffp_settings *settings);
799 void add_ffp_shader(struct hash_table_t *shaders, struct ffp_desc *desc);
800 BOOL ffp_program_key_compare(void *keya, void *keyb);
801 unsigned int ffp_program_key_hash(void *key);
803 /*****************************************************************************
804 * IWineD3D implementation structure
806 typedef struct IWineD3DImpl
808 /* IUnknown fields */
809 const IWineD3DVtbl *lpVtbl;
810 LONG ref; /* Note: Ref counting not required */
812 /* WineD3D Information */
813 IUnknown *parent;
814 UINT dxVersion;
815 } IWineD3DImpl;
817 extern const IWineD3DVtbl IWineD3D_Vtbl;
819 /* TODO: setup some flags in the registry to enable, disable pbuffer support
820 (since it will break quite a few things until contexts are managed properly!) */
821 extern BOOL pbuffer_support;
822 /* allocate one pbuffer per surface */
823 extern BOOL pbuffer_per_surface;
825 /* A helper function that dumps a resource list */
826 void dumpResources(struct list *list);
828 /*****************************************************************************
829 * IWineD3DDevice implementation structure
831 struct IWineD3DDeviceImpl
833 /* IUnknown fields */
834 const IWineD3DDeviceVtbl *lpVtbl;
835 LONG ref; /* Note: Ref counting not required */
837 /* WineD3D Information */
838 IUnknown *parent;
839 IWineD3D *wineD3D;
840 struct WineD3DAdapter *adapter;
842 /* Window styles to restore when switching fullscreen mode */
843 LONG style;
844 LONG exStyle;
846 /* X and GL Information */
847 GLint maxConcurrentLights;
848 GLenum offscreenBuffer;
850 /* Selected capabilities */
851 int vs_selected_mode;
852 int ps_selected_mode;
853 const shader_backend_t *shader_backend;
854 void *shader_priv;
855 void *fragment_priv;
856 void *blit_priv;
857 struct StateEntry StateTable[STATE_HIGHEST + 1];
858 /* Array of functions for states which are handled by more than one pipeline part */
859 APPLYSTATEFUNC *multistate_funcs[STATE_HIGHEST + 1];
860 const struct fragment_pipeline *frag_pipe;
861 const struct blit_shader *blitter;
863 unsigned int max_ffp_textures, max_ffp_texture_stages;
865 /* To store */
866 BOOL view_ident; /* true iff view matrix is identity */
867 BOOL untransformed;
868 BOOL vertexBlendUsed; /* To avoid needless setting of the blend matrices */
869 #define DDRAW_PITCH_ALIGNMENT 8
870 #define D3D8_PITCH_ALIGNMENT 4
871 unsigned char surface_alignment; /* Line Alignment of surfaces */
873 /* State block related */
874 BOOL isRecordingState;
875 IWineD3DStateBlockImpl *stateBlock;
876 IWineD3DStateBlockImpl *updateStateBlock;
877 BOOL isInDraw;
879 /* Internal use fields */
880 WINED3DDEVICE_CREATION_PARAMETERS createParms;
881 UINT adapterNo;
882 WINED3DDEVTYPE devType;
884 IWineD3DSwapChain **swapchains;
885 UINT NumberOfSwapChains;
887 struct list resources; /* a linked list to track resources created by the device */
888 struct list shaders; /* a linked list to track shaders (pixel and vertex) */
889 unsigned int highest_dirty_ps_const, highest_dirty_vs_const;
891 /* Render Target Support */
892 IWineD3DSurface **render_targets;
893 IWineD3DSurface *auto_depth_stencil_buffer;
894 IWineD3DSurface *stencilBufferTarget;
896 /* Caches to avoid unneeded context changes */
897 IWineD3DSurface *lastActiveRenderTarget;
898 IWineD3DSwapChain *lastActiveSwapChain;
900 /* palettes texture management */
901 UINT NumberOfPalettes;
902 PALETTEENTRY **palettes;
903 UINT currentPalette;
904 UINT paletteConversionShader;
906 /* For rendering to a texture using glCopyTexImage */
907 BOOL render_offscreen;
908 GLenum *draw_buffers;
909 GLuint depth_blt_texture;
910 GLuint depth_blt_rb;
911 UINT depth_blt_rb_w;
912 UINT depth_blt_rb_h;
914 /* Cursor management */
915 BOOL bCursorVisible;
916 UINT xHotSpot;
917 UINT yHotSpot;
918 UINT xScreenSpace;
919 UINT yScreenSpace;
920 UINT cursorWidth, cursorHeight;
921 GLuint cursorTexture;
922 BOOL haveHardwareCursor;
923 HCURSOR hardwareCursor;
925 /* The Wine logo surface */
926 IWineD3DSurface *logo_surface;
928 /* Textures for when no other textures are mapped */
929 UINT dummyTextureName[MAX_TEXTURES];
931 /* Debug stream management */
932 BOOL debug;
934 /* Device state management */
935 HRESULT state;
936 BOOL d3d_initialized;
938 /* A flag to check for proper BeginScene / EndScene call pairs */
939 BOOL inScene;
941 /* process vertex shaders using software or hardware */
942 BOOL softwareVertexProcessing;
944 /* DirectDraw stuff */
945 DWORD ddraw_width, ddraw_height;
946 WINED3DFORMAT ddraw_format;
948 /* Final position fixup constant */
949 float posFixup[4];
951 /* With register combiners we can skip junk texture stages */
952 DWORD texUnitMap[MAX_COMBINED_SAMPLERS];
953 DWORD rev_tex_unit_map[MAX_COMBINED_SAMPLERS];
954 BOOL fixed_function_usage_map[MAX_TEXTURES];
956 /* Stream source management */
957 WineDirect3DVertexStridedData strided_streams;
958 WineDirect3DVertexStridedData *up_strided;
959 BOOL useDrawStridedSlow;
960 BOOL instancedDraw;
962 /* Context management */
963 WineD3DContext **contexts; /* Dynamic array containing pointers to context structures */
964 WineD3DContext *activeContext;
965 DWORD lastThread;
966 UINT numContexts;
967 WineD3DContext *pbufferContext; /* The context that has a pbuffer as drawable */
968 DWORD pbufferWidth, pbufferHeight; /* Size of the buffer drawable */
970 /* High level patch management */
971 #define PATCHMAP_SIZE 43
972 #define PATCHMAP_HASHFUNC(x) ((x) % PATCHMAP_SIZE) /* Primitive and simple function */
973 struct list patches[PATCHMAP_SIZE];
974 struct WineD3DRectPatch *currentPatch;
977 extern const IWineD3DDeviceVtbl IWineD3DDevice_Vtbl, IWineD3DDevice_DirtyConst_Vtbl;
979 HRESULT IWineD3DDeviceImpl_ClearSurface(IWineD3DDeviceImpl *This, IWineD3DSurfaceImpl *target, DWORD Count,
980 CONST WINED3DRECT* pRects, DWORD Flags, WINED3DCOLOR Color,
981 float Z, DWORD Stencil);
982 void IWineD3DDeviceImpl_FindTexUnitMap(IWineD3DDeviceImpl *This);
983 void IWineD3DDeviceImpl_MarkStateDirty(IWineD3DDeviceImpl *This, DWORD state);
984 static inline BOOL isStateDirty(WineD3DContext *context, DWORD state) {
985 DWORD idx = state >> 5;
986 BYTE shift = state & 0x1f;
987 return context->isStateDirty[idx] & (1 << shift);
990 /* Support for IWineD3DResource ::Set/Get/FreePrivateData. */
991 typedef struct PrivateData
993 struct list entry;
995 GUID tag;
996 DWORD flags; /* DDSPD_* */
997 DWORD uniqueness_value;
999 union
1001 LPVOID data;
1002 LPUNKNOWN object;
1003 } ptr;
1005 DWORD size;
1006 } PrivateData;
1008 /*****************************************************************************
1009 * IWineD3DResource implementation structure
1011 typedef struct IWineD3DResourceClass
1013 /* IUnknown fields */
1014 LONG ref; /* Note: Ref counting not required */
1016 /* WineD3DResource Information */
1017 IUnknown *parent;
1018 WINED3DRESOURCETYPE resourceType;
1019 IWineD3DDeviceImpl *wineD3DDevice;
1020 WINED3DPOOL pool;
1021 UINT size;
1022 DWORD usage;
1023 WINED3DFORMAT format;
1024 BYTE *allocatedMemory; /* Pointer to the real data location */
1025 BYTE *heapMemory; /* Pointer to the HeapAlloced block of memory */
1026 struct list privateData;
1027 struct list resource_list_entry;
1029 } IWineD3DResourceClass;
1031 typedef struct IWineD3DResourceImpl
1033 /* IUnknown & WineD3DResource Information */
1034 const IWineD3DResourceVtbl *lpVtbl;
1035 IWineD3DResourceClass resource;
1036 } IWineD3DResourceImpl;
1038 /* Tests show that the start address of resources is 32 byte aligned */
1039 #define RESOURCE_ALIGNMENT 32
1041 /*****************************************************************************
1042 * IWineD3DVertexBuffer implementation structure (extends IWineD3DResourceImpl)
1044 enum vbo_conversion_type {
1045 CONV_NONE = 0,
1046 CONV_D3DCOLOR = 1,
1047 CONV_POSITIONT = 2,
1048 CONV_FLOAT16_2 = 3 /* Also handles FLOAT16_4 */
1050 /* TODO: Add tests and support for FLOAT16_4 POSITIONT, D3DCOLOR position, other
1051 * fixed function semantics as D3DCOLOR or FLOAT16
1055 typedef struct IWineD3DVertexBufferImpl
1057 /* IUnknown & WineD3DResource Information */
1058 const IWineD3DVertexBufferVtbl *lpVtbl;
1059 IWineD3DResourceClass resource;
1061 /* WineD3DVertexBuffer specifics */
1062 DWORD fvf;
1064 /* Vertex buffer object support */
1065 GLuint vbo;
1066 BYTE Flags;
1067 LONG bindCount;
1068 LONG vbo_size;
1069 GLenum vbo_usage;
1071 UINT dirtystart, dirtyend;
1072 LONG lockcount;
1074 LONG declChanges, draws;
1075 /* Last description of the buffer */
1076 DWORD stride; /* 0 if no conversion */
1077 enum vbo_conversion_type *conv_map; /* NULL if no conversion */
1079 /* Extra load offsets, for FLOAT16 conversion */
1080 DWORD *conv_shift; /* NULL if no shifted conversion */
1081 DWORD conv_stride; /* 0 if no shifted conversion */
1082 } IWineD3DVertexBufferImpl;
1084 extern const IWineD3DVertexBufferVtbl IWineD3DVertexBuffer_Vtbl;
1086 #define VBFLAG_OPTIMIZED 0x01 /* Optimize has been called for the VB */
1087 #define VBFLAG_DIRTY 0x02 /* Buffer data has been modified */
1088 #define VBFLAG_HASDESC 0x04 /* A vertex description has been found */
1089 #define VBFLAG_CREATEVBO 0x08 /* Attempt to create a VBO next PreLoad */
1091 /*****************************************************************************
1092 * IWineD3DIndexBuffer implementation structure (extends IWineD3DResourceImpl)
1094 typedef struct IWineD3DIndexBufferImpl
1096 /* IUnknown & WineD3DResource Information */
1097 const IWineD3DIndexBufferVtbl *lpVtbl;
1098 IWineD3DResourceClass resource;
1100 GLuint vbo;
1101 UINT dirtystart, dirtyend;
1102 LONG lockcount;
1104 /* WineD3DVertexBuffer specifics */
1105 } IWineD3DIndexBufferImpl;
1107 extern const IWineD3DIndexBufferVtbl IWineD3DIndexBuffer_Vtbl;
1109 /*****************************************************************************
1110 * IWineD3DBaseTexture D3D- > openGL state map lookups
1112 #define WINED3DFUNC_NOTSUPPORTED -2
1113 #define WINED3DFUNC_UNIMPLEMENTED -1
1115 typedef enum winetexturestates {
1116 WINED3DTEXSTA_ADDRESSU = 0,
1117 WINED3DTEXSTA_ADDRESSV = 1,
1118 WINED3DTEXSTA_ADDRESSW = 2,
1119 WINED3DTEXSTA_BORDERCOLOR = 3,
1120 WINED3DTEXSTA_MAGFILTER = 4,
1121 WINED3DTEXSTA_MINFILTER = 5,
1122 WINED3DTEXSTA_MIPFILTER = 6,
1123 WINED3DTEXSTA_MAXMIPLEVEL = 7,
1124 WINED3DTEXSTA_MAXANISOTROPY = 8,
1125 WINED3DTEXSTA_SRGBTEXTURE = 9,
1126 WINED3DTEXSTA_ELEMENTINDEX = 10,
1127 WINED3DTEXSTA_DMAPOFFSET = 11,
1128 WINED3DTEXSTA_TSSADDRESSW = 12,
1129 MAX_WINETEXTURESTATES = 13,
1130 } winetexturestates;
1132 /*****************************************************************************
1133 * IWineD3DBaseTexture implementation structure (extends IWineD3DResourceImpl)
1135 typedef struct IWineD3DBaseTextureClass
1137 UINT levels;
1138 BOOL dirty;
1139 UINT textureName;
1140 UINT LOD;
1141 WINED3DTEXTUREFILTERTYPE filterType;
1142 DWORD states[MAX_WINETEXTURESTATES];
1143 LONG bindCount;
1144 DWORD sampler;
1145 BOOL is_srgb;
1146 UINT srgb_mode_change_count;
1147 WINED3DFORMAT shader_conversion_group;
1148 float pow2Matrix[16];
1149 minMipLookup_t *minMipLookup;
1150 magLookup_t *magLookup;
1151 } IWineD3DBaseTextureClass;
1153 typedef struct IWineD3DBaseTextureImpl
1155 /* IUnknown & WineD3DResource Information */
1156 const IWineD3DBaseTextureVtbl *lpVtbl;
1157 IWineD3DResourceClass resource;
1158 IWineD3DBaseTextureClass baseTexture;
1160 } IWineD3DBaseTextureImpl;
1162 /*****************************************************************************
1163 * IWineD3DTexture implementation structure (extends IWineD3DBaseTextureImpl)
1165 typedef struct IWineD3DTextureImpl
1167 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
1168 const IWineD3DTextureVtbl *lpVtbl;
1169 IWineD3DResourceClass resource;
1170 IWineD3DBaseTextureClass baseTexture;
1172 /* IWineD3DTexture */
1173 IWineD3DSurface *surfaces[MAX_LEVELS];
1175 UINT width;
1176 UINT height;
1177 UINT target;
1178 BOOL cond_np2;
1180 } IWineD3DTextureImpl;
1182 extern const IWineD3DTextureVtbl IWineD3DTexture_Vtbl;
1184 /*****************************************************************************
1185 * IWineD3DCubeTexture implementation structure (extends IWineD3DBaseTextureImpl)
1187 typedef struct IWineD3DCubeTextureImpl
1189 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
1190 const IWineD3DCubeTextureVtbl *lpVtbl;
1191 IWineD3DResourceClass resource;
1192 IWineD3DBaseTextureClass baseTexture;
1194 /* IWineD3DCubeTexture */
1195 IWineD3DSurface *surfaces[6][MAX_LEVELS];
1197 UINT edgeLength;
1198 } IWineD3DCubeTextureImpl;
1200 extern const IWineD3DCubeTextureVtbl IWineD3DCubeTexture_Vtbl;
1202 typedef struct _WINED3DVOLUMET_DESC
1204 UINT Width;
1205 UINT Height;
1206 UINT Depth;
1207 } WINED3DVOLUMET_DESC;
1209 /*****************************************************************************
1210 * IWineD3DVolume implementation structure (extends IUnknown)
1212 typedef struct IWineD3DVolumeImpl
1214 /* IUnknown & WineD3DResource fields */
1215 const IWineD3DVolumeVtbl *lpVtbl;
1216 IWineD3DResourceClass resource;
1218 /* WineD3DVolume Information */
1219 WINED3DVOLUMET_DESC currentDesc;
1220 IWineD3DBase *container;
1221 UINT bytesPerPixel;
1223 BOOL lockable;
1224 BOOL locked;
1225 WINED3DBOX lockedBox;
1226 WINED3DBOX dirtyBox;
1227 BOOL dirty;
1230 } IWineD3DVolumeImpl;
1232 extern const IWineD3DVolumeVtbl IWineD3DVolume_Vtbl;
1234 /*****************************************************************************
1235 * IWineD3DVolumeTexture implementation structure (extends IWineD3DBaseTextureImpl)
1237 typedef struct IWineD3DVolumeTextureImpl
1239 /* IUnknown & WineD3DResource/WineD3DBaseTexture Information */
1240 const IWineD3DVolumeTextureVtbl *lpVtbl;
1241 IWineD3DResourceClass resource;
1242 IWineD3DBaseTextureClass baseTexture;
1244 /* IWineD3DVolumeTexture */
1245 IWineD3DVolume *volumes[MAX_LEVELS];
1247 UINT width;
1248 UINT height;
1249 UINT depth;
1250 } IWineD3DVolumeTextureImpl;
1252 extern const IWineD3DVolumeTextureVtbl IWineD3DVolumeTexture_Vtbl;
1254 typedef struct _WINED3DSURFACET_DESC
1256 WINED3DMULTISAMPLE_TYPE MultiSampleType;
1257 DWORD MultiSampleQuality;
1258 UINT Width;
1259 UINT Height;
1260 } WINED3DSURFACET_DESC;
1262 /*****************************************************************************
1263 * Structure for DIB Surfaces (GetDC and GDI surfaces)
1265 typedef struct wineD3DSurface_DIB {
1266 HBITMAP DIBsection;
1267 void* bitmap_data;
1268 UINT bitmap_size;
1269 HGDIOBJ holdbitmap;
1270 BOOL client_memory;
1271 } wineD3DSurface_DIB;
1273 typedef struct {
1274 struct list entry;
1275 GLuint id;
1276 UINT width;
1277 UINT height;
1278 } renderbuffer_entry_t;
1280 /*****************************************************************************
1281 * IWineD3DClipp implementation structure
1283 typedef struct IWineD3DClipperImpl
1285 const IWineD3DClipperVtbl *lpVtbl;
1286 LONG ref;
1288 IUnknown *Parent;
1289 HWND hWnd;
1290 } IWineD3DClipperImpl;
1293 /*****************************************************************************
1294 * IWineD3DSurface implementation structure
1296 struct IWineD3DSurfaceImpl
1298 /* IUnknown & IWineD3DResource Information */
1299 const IWineD3DSurfaceVtbl *lpVtbl;
1300 IWineD3DResourceClass resource;
1302 /* IWineD3DSurface fields */
1303 IWineD3DBase *container;
1304 WINED3DSURFACET_DESC currentDesc;
1305 IWineD3DPaletteImpl *palette; /* D3D7 style palette handling */
1306 PALETTEENTRY *palette9; /* D3D8/9 style palette handling */
1308 UINT bytesPerPixel;
1310 /* TODO: move this off into a management class(maybe!) */
1311 DWORD Flags;
1313 UINT pow2Width;
1314 UINT pow2Height;
1316 /* A method to retrieve the drawable size. Not in the Vtable to make it changeable */
1317 void (*get_drawable_size)(IWineD3DSurfaceImpl *This, UINT *width, UINT *height);
1319 /* Oversized texture */
1320 RECT glRect;
1322 /* PBO */
1323 GLuint pbo;
1325 RECT lockedRect;
1326 RECT dirtyRect;
1327 int lockCount;
1328 #define MAXLOCKCOUNT 50 /* After this amount of locks do not free the sysmem copy */
1330 glDescriptor glDescription;
1331 BOOL srgb;
1333 /* For GetDC */
1334 wineD3DSurface_DIB dib;
1335 HDC hDC;
1337 /* Color keys for DDraw */
1338 WINEDDCOLORKEY DestBltCKey;
1339 WINEDDCOLORKEY DestOverlayCKey;
1340 WINEDDCOLORKEY SrcOverlayCKey;
1341 WINEDDCOLORKEY SrcBltCKey;
1342 DWORD CKeyFlags;
1344 WINEDDCOLORKEY glCKey;
1346 struct list renderbuffers;
1347 renderbuffer_entry_t *current_renderbuffer;
1349 /* DirectDraw clippers */
1350 IWineD3DClipper *clipper;
1352 /* DirectDraw Overlay handling */
1353 RECT overlay_srcrect;
1354 RECT overlay_destrect;
1355 IWineD3DSurfaceImpl *overlay_dest;
1356 struct list overlays;
1357 struct list overlay_entry;
1360 extern const IWineD3DSurfaceVtbl IWineD3DSurface_Vtbl;
1361 extern const IWineD3DSurfaceVtbl IWineGDISurface_Vtbl;
1363 /* Predeclare the shared Surface functions */
1364 HRESULT WINAPI IWineD3DBaseSurfaceImpl_QueryInterface(IWineD3DSurface *iface, REFIID riid, LPVOID *ppobj);
1365 ULONG WINAPI IWineD3DBaseSurfaceImpl_AddRef(IWineD3DSurface *iface);
1366 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetParent(IWineD3DSurface *iface, IUnknown **pParent);
1367 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDevice(IWineD3DSurface *iface, IWineD3DDevice** ppDevice);
1368 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPrivateData(IWineD3DSurface *iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags);
1369 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPrivateData(IWineD3DSurface *iface, REFGUID refguid, void* pData, DWORD* pSizeOfData);
1370 HRESULT WINAPI IWineD3DBaseSurfaceImpl_FreePrivateData(IWineD3DSurface *iface, REFGUID refguid);
1371 DWORD WINAPI IWineD3DBaseSurfaceImpl_SetPriority(IWineD3DSurface *iface, DWORD PriorityNew);
1372 DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPriority(IWineD3DSurface *iface);
1373 WINED3DRESOURCETYPE WINAPI IWineD3DBaseSurfaceImpl_GetType(IWineD3DSurface *iface);
1374 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetContainer(IWineD3DSurface* iface, REFIID riid, void** ppContainer);
1375 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetDesc(IWineD3DSurface *iface, WINED3DSURFACE_DESC *pDesc);
1376 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetBltStatus(IWineD3DSurface *iface, DWORD Flags);
1377 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetFlipStatus(IWineD3DSurface *iface, DWORD Flags);
1378 HRESULT WINAPI IWineD3DBaseSurfaceImpl_IsLost(IWineD3DSurface *iface);
1379 HRESULT WINAPI IWineD3DBaseSurfaceImpl_Restore(IWineD3DSurface *iface);
1380 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetPalette(IWineD3DSurface *iface, IWineD3DPalette **Pal);
1381 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetPalette(IWineD3DSurface *iface, IWineD3DPalette *Pal);
1382 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetColorKey(IWineD3DSurface *iface, DWORD Flags, WINEDDCOLORKEY *CKey);
1383 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetContainer(IWineD3DSurface *iface, IWineD3DBase *container);
1384 DWORD WINAPI IWineD3DBaseSurfaceImpl_GetPitch(IWineD3DSurface *iface);
1385 HRESULT WINAPI IWineD3DBaseSurfaceImpl_RealizePalette(IWineD3DSurface *iface);
1386 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetOverlayPosition(IWineD3DSurface *iface, LONG X, LONG Y);
1387 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetOverlayPosition(IWineD3DSurface *iface, LONG *X, LONG *Y);
1388 HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlayZOrder(IWineD3DSurface *iface, DWORD Flags, IWineD3DSurface *Ref);
1389 HRESULT WINAPI IWineD3DBaseSurfaceImpl_UpdateOverlay(IWineD3DSurface *iface, RECT *SrcRect, IWineD3DSurface *DstSurface, RECT *DstRect, DWORD Flags, WINEDDOVERLAYFX *FX);
1390 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetClipper(IWineD3DSurface *iface, IWineD3DClipper *clipper);
1391 HRESULT WINAPI IWineD3DBaseSurfaceImpl_GetClipper(IWineD3DSurface *iface, IWineD3DClipper **clipper);
1392 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetFormat(IWineD3DSurface *iface, WINED3DFORMAT format);
1393 HRESULT IWineD3DBaseSurfaceImpl_CreateDIBSection(IWineD3DSurface *iface);
1394 HRESULT WINAPI IWineD3DBaseSurfaceImpl_Blt(IWineD3DSurface *iface, RECT *DestRect, IWineD3DSurface *SrcSurface, RECT *SrcRect, DWORD Flags, WINEDDBLTFX *DDBltFx, WINED3DTEXTUREFILTERTYPE Filter);
1395 HRESULT WINAPI IWineD3DBaseSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dstx, DWORD dsty, IWineD3DSurface *Source, RECT *rsrc, DWORD trans);
1396 HRESULT WINAPI IWineD3DBaseSurfaceImpl_LockRect(IWineD3DSurface *iface, WINED3DLOCKED_RECT* pLockedRect, CONST RECT* pRect, DWORD Flags);
1397 void WINAPI IWineD3DBaseSurfaceImpl_BindTexture(IWineD3DSurface *iface);
1399 const void *WINAPI IWineD3DSurfaceImpl_GetData(IWineD3DSurface *iface);
1401 void get_drawable_size_swapchain(IWineD3DSurfaceImpl *This, UINT *width, UINT *height);
1402 void get_drawable_size_backbuffer(IWineD3DSurfaceImpl *This, UINT *width, UINT *height);
1403 void get_drawable_size_pbuffer(IWineD3DSurfaceImpl *This, UINT *width, UINT *height);
1404 void get_drawable_size_fbo(IWineD3DSurfaceImpl *This, UINT *width, UINT *height);
1406 void flip_surface(IWineD3DSurfaceImpl *front, IWineD3DSurfaceImpl *back);
1408 /* Surface flags: */
1409 #define SFLAG_OVERSIZE 0x00000001 /* Surface is bigger than gl size, blts only */
1410 #define SFLAG_CONVERTED 0x00000002 /* Converted for color keying or Palettized */
1411 #define SFLAG_DIBSECTION 0x00000004 /* Has a DIB section attached for GetDC */
1412 #define SFLAG_LOCKABLE 0x00000008 /* Surface can be locked */
1413 #define SFLAG_DISCARD 0x00000010 /* ??? */
1414 #define SFLAG_LOCKED 0x00000020 /* Surface is locked atm */
1415 #define SFLAG_INTEXTURE 0x00000040 /* The GL texture contains the newest surface content */
1416 #define SFLAG_INDRAWABLE 0x00000080 /* The gl drawable contains the most up to date data */
1417 #define SFLAG_INSYSMEM 0x00000100 /* The system memory copy is most up to date */
1418 #define SFLAG_NONPOW2 0x00000200 /* Surface sizes are not a power of 2 */
1419 #define SFLAG_DYNLOCK 0x00000400 /* Surface is often locked by the app */
1420 #define SFLAG_DYNCHANGE 0x00000C00 /* Surface contents are changed very often, implies DYNLOCK */
1421 #define SFLAG_DCINUSE 0x00001000 /* Set between GetDC and ReleaseDC calls */
1422 #define SFLAG_LOST 0x00002000 /* Surface lost flag for DDraw */
1423 #define SFLAG_USERPTR 0x00004000 /* The application allocated the memory for this surface */
1424 #define SFLAG_GLCKEY 0x00008000 /* The gl texture was created with a color key */
1425 #define SFLAG_CLIENT 0x00010000 /* GL_APPLE_client_storage is used on that texture */
1426 #define SFLAG_ALLOCATED 0x00020000 /* A gl texture is allocated for this surface */
1427 #define SFLAG_PBO 0x00040000 /* Has a PBO attached for speeding up data transfers for dynamically locked surfaces */
1428 #define SFLAG_NORMCOORD 0x00080000 /* Set if the GL texture coords are normalized(non-texture rectangle) */
1429 #define SFLAG_DS_ONSCREEN 0x00100000 /* Is a depth stencil, last modified onscreen */
1430 #define SFLAG_DS_OFFSCREEN 0x00200000 /* Is a depth stencil, last modified offscreen */
1431 #define SFLAG_INOVERLAYDRAW 0x00400000 /* Overlay drawing is in progress. Recursion prevention */
1433 /* In some conditions the surface memory must not be freed:
1434 * SFLAG_OVERSIZE: Not all data can be kept in GL
1435 * SFLAG_CONVERTED: Converting the data back would take too long
1436 * SFLAG_DIBSECTION: The dib code manages the memory
1437 * SFLAG_LOCKED: The app requires access to the surface data
1438 * SFLAG_DYNLOCK: Avoid freeing the data for performance
1439 * SFLAG_DYNCHANGE: Same reason as DYNLOCK
1440 * SFLAG_PBO: PBOs don't use 'normal' memory. It is either allocated by the driver or must be NULL.
1441 * SFLAG_CLIENT: OpenGL uses our memory as backup
1443 #define SFLAG_DONOTFREE (SFLAG_OVERSIZE | \
1444 SFLAG_CONVERTED | \
1445 SFLAG_DIBSECTION | \
1446 SFLAG_LOCKED | \
1447 SFLAG_DYNLOCK | \
1448 SFLAG_DYNCHANGE | \
1449 SFLAG_USERPTR | \
1450 SFLAG_PBO | \
1451 SFLAG_CLIENT)
1453 #define SFLAG_LOCATIONS (SFLAG_INSYSMEM | \
1454 SFLAG_INTEXTURE | \
1455 SFLAG_INDRAWABLE)
1457 #define SFLAG_DS_LOCATIONS (SFLAG_DS_ONSCREEN | \
1458 SFLAG_DS_OFFSCREEN)
1460 BOOL CalculateTexRect(IWineD3DSurfaceImpl *This, RECT *Rect, float glTexCoord[4]);
1462 typedef enum {
1463 NO_CONVERSION,
1464 CONVERT_PALETTED,
1465 CONVERT_PALETTED_CK,
1466 CONVERT_CK_565,
1467 CONVERT_CK_5551,
1468 CONVERT_CK_4444,
1469 CONVERT_CK_4444_ARGB,
1470 CONVERT_CK_1555,
1471 CONVERT_555,
1472 CONVERT_CK_RGB24,
1473 CONVERT_CK_8888,
1474 CONVERT_CK_8888_ARGB,
1475 CONVERT_RGB32_888,
1476 CONVERT_V8U8,
1477 CONVERT_L6V5U5,
1478 CONVERT_X8L8V8U8,
1479 CONVERT_Q8W8V8U8,
1480 CONVERT_V16U16,
1481 CONVERT_A4L4,
1482 CONVERT_R32F,
1483 CONVERT_R16F,
1484 CONVERT_G16R16,
1485 } CONVERT_TYPES;
1487 HRESULT d3dfmt_get_conv(IWineD3DSurfaceImpl *This, BOOL need_alpha_ck, BOOL use_texturing, GLenum *format, GLenum *internal, GLenum *type, CONVERT_TYPES *convert, int *target_bpp, BOOL srgb_mode);
1489 BOOL palette9_changed(IWineD3DSurfaceImpl *This);
1491 /*****************************************************************************
1492 * IWineD3DVertexDeclaration implementation structure
1494 typedef struct attrib_declaration {
1495 DWORD usage;
1496 DWORD idx;
1497 } attrib_declaration;
1499 #define MAX_ATTRIBS 16
1501 typedef struct IWineD3DVertexDeclarationImpl {
1502 /* IUnknown Information */
1503 const IWineD3DVertexDeclarationVtbl *lpVtbl;
1504 LONG ref;
1506 IUnknown *parent;
1507 IWineD3DDeviceImpl *wineD3DDevice;
1509 WINED3DVERTEXELEMENT *pDeclarationWine;
1510 UINT declarationWNumElements;
1512 DWORD streams[MAX_STREAMS];
1513 UINT num_streams;
1514 BOOL position_transformed;
1515 BOOL half_float_conv_needed;
1517 /* Ordered array of declaration types that need swizzling in a vshader */
1518 attrib_declaration swizzled_attribs[MAX_ATTRIBS];
1519 UINT num_swizzled_attribs;
1520 } IWineD3DVertexDeclarationImpl;
1522 extern const IWineD3DVertexDeclarationVtbl IWineD3DVertexDeclaration_Vtbl;
1524 /*****************************************************************************
1525 * IWineD3DStateBlock implementation structure
1528 /* Internal state Block for Begin/End/Capture/Create/Apply info */
1529 /* Note: Very long winded but gl Lists are not flexible enough */
1530 /* to resolve everything we need, so doing it manually for now */
1531 typedef struct SAVEDSTATES {
1532 BOOL indices;
1533 BOOL material;
1534 BOOL fvf;
1535 BOOL streamSource[MAX_STREAMS];
1536 BOOL streamFreq[MAX_STREAMS];
1537 BOOL textures[MAX_COMBINED_SAMPLERS];
1538 BOOL transform[HIGHEST_TRANSFORMSTATE + 1];
1539 BOOL viewport;
1540 BOOL renderState[WINEHIGHEST_RENDER_STATE + 1];
1541 BOOL textureState[MAX_TEXTURES][WINED3D_HIGHEST_TEXTURE_STATE + 1];
1542 BOOL samplerState[MAX_COMBINED_SAMPLERS][WINED3D_HIGHEST_SAMPLER_STATE + 1];
1543 BOOL clipplane[MAX_CLIPPLANES];
1544 BOOL vertexDecl;
1545 BOOL pixelShader;
1546 BOOL pixelShaderConstantsB[MAX_CONST_B];
1547 BOOL pixelShaderConstantsI[MAX_CONST_I];
1548 BOOL *pixelShaderConstantsF;
1549 BOOL vertexShader;
1550 BOOL vertexShaderConstantsB[MAX_CONST_B];
1551 BOOL vertexShaderConstantsI[MAX_CONST_I];
1552 BOOL *vertexShaderConstantsF;
1553 BOOL scissorRect;
1554 } SAVEDSTATES;
1556 typedef struct {
1557 struct list entry;
1558 DWORD count;
1559 DWORD idx[13];
1560 } constants_entry;
1562 struct StageState {
1563 DWORD stage;
1564 DWORD state;
1567 struct IWineD3DStateBlockImpl
1569 /* IUnknown fields */
1570 const IWineD3DStateBlockVtbl *lpVtbl;
1571 LONG ref; /* Note: Ref counting not required */
1573 /* IWineD3DStateBlock information */
1574 IUnknown *parent;
1575 IWineD3DDeviceImpl *wineD3DDevice;
1576 WINED3DSTATEBLOCKTYPE blockType;
1578 /* Array indicating whether things have been set or changed */
1579 SAVEDSTATES changed;
1580 struct list set_vconstantsF;
1581 struct list set_pconstantsF;
1583 /* Drawing - Vertex Shader or FVF related */
1584 DWORD fvf;
1585 /* Vertex Shader Declaration */
1586 IWineD3DVertexDeclaration *vertexDecl;
1588 IWineD3DVertexShader *vertexShader;
1590 /* Vertex Shader Constants */
1591 BOOL vertexShaderConstantB[MAX_CONST_B];
1592 INT vertexShaderConstantI[MAX_CONST_I * 4];
1593 float *vertexShaderConstantF;
1595 /* Stream Source */
1596 BOOL streamIsUP;
1597 UINT streamStride[MAX_STREAMS];
1598 UINT streamOffset[MAX_STREAMS + 1 /* tesselated pseudo-stream */ ];
1599 IWineD3DVertexBuffer *streamSource[MAX_STREAMS];
1600 UINT streamFreq[MAX_STREAMS + 1];
1601 UINT streamFlags[MAX_STREAMS + 1]; /*0 | WINED3DSTREAMSOURCE_INSTANCEDATA | WINED3DSTREAMSOURCE_INDEXEDDATA */
1603 /* Indices */
1604 IWineD3DIndexBuffer* pIndexData;
1605 INT baseVertexIndex;
1606 INT loadBaseVertexIndex; /* non-indexed drawing needs 0 here, indexed baseVertexIndex */
1608 /* Transform */
1609 WINED3DMATRIX transforms[HIGHEST_TRANSFORMSTATE + 1];
1611 /* Light hashmap . Collisions are handled using standard wine double linked lists */
1612 #define LIGHTMAP_SIZE 43 /* Use of a prime number recommended. Set to 1 for a linked list! */
1613 #define LIGHTMAP_HASHFUNC(x) ((x) % LIGHTMAP_SIZE) /* Primitive and simple function */
1614 struct list lightMap[LIGHTMAP_SIZE]; /* Mashmap containing the lights */
1615 PLIGHTINFOEL *activeLights[MAX_ACTIVE_LIGHTS]; /* Map of opengl lights to d3d lights */
1617 /* Clipping */
1618 double clipplane[MAX_CLIPPLANES][4];
1619 WINED3DCLIPSTATUS clip_status;
1621 /* ViewPort */
1622 WINED3DVIEWPORT viewport;
1624 /* Material */
1625 WINED3DMATERIAL material;
1627 /* Pixel Shader */
1628 IWineD3DPixelShader *pixelShader;
1630 /* Pixel Shader Constants */
1631 BOOL pixelShaderConstantB[MAX_CONST_B];
1632 INT pixelShaderConstantI[MAX_CONST_I * 4];
1633 float *pixelShaderConstantF;
1635 /* RenderState */
1636 DWORD renderState[WINEHIGHEST_RENDER_STATE + 1];
1638 /* Texture */
1639 IWineD3DBaseTexture *textures[MAX_COMBINED_SAMPLERS];
1640 int textureDimensions[MAX_COMBINED_SAMPLERS];
1642 /* Texture State Stage */
1643 DWORD textureState[MAX_TEXTURES][WINED3D_HIGHEST_TEXTURE_STATE + 1];
1644 DWORD lowest_disabled_stage;
1645 /* Sampler States */
1646 DWORD samplerState[MAX_COMBINED_SAMPLERS][WINED3D_HIGHEST_SAMPLER_STATE + 1];
1648 /* Scissor test rectangle */
1649 RECT scissorRect;
1651 /* Contained state management */
1652 DWORD contained_render_states[WINEHIGHEST_RENDER_STATE + 1];
1653 unsigned int num_contained_render_states;
1654 DWORD contained_transform_states[HIGHEST_TRANSFORMSTATE + 1];
1655 unsigned int num_contained_transform_states;
1656 DWORD contained_vs_consts_i[MAX_CONST_I];
1657 unsigned int num_contained_vs_consts_i;
1658 DWORD contained_vs_consts_b[MAX_CONST_B];
1659 unsigned int num_contained_vs_consts_b;
1660 DWORD *contained_vs_consts_f;
1661 unsigned int num_contained_vs_consts_f;
1662 DWORD contained_ps_consts_i[MAX_CONST_I];
1663 unsigned int num_contained_ps_consts_i;
1664 DWORD contained_ps_consts_b[MAX_CONST_B];
1665 unsigned int num_contained_ps_consts_b;
1666 DWORD *contained_ps_consts_f;
1667 unsigned int num_contained_ps_consts_f;
1668 struct StageState contained_tss_states[MAX_TEXTURES * (WINED3D_HIGHEST_TEXTURE_STATE)];
1669 unsigned int num_contained_tss_states;
1670 struct StageState contained_sampler_states[MAX_COMBINED_SAMPLERS * WINED3D_HIGHEST_SAMPLER_STATE];
1671 unsigned int num_contained_sampler_states;
1674 extern void stateblock_savedstates_set(
1675 IWineD3DStateBlock* iface,
1676 SAVEDSTATES* states,
1677 BOOL value);
1679 extern void stateblock_savedstates_copy(
1680 IWineD3DStateBlock* iface,
1681 SAVEDSTATES* dest,
1682 SAVEDSTATES* source);
1684 extern void stateblock_copy(
1685 IWineD3DStateBlock* destination,
1686 IWineD3DStateBlock* source);
1688 extern const IWineD3DStateBlockVtbl IWineD3DStateBlock_Vtbl;
1690 /* Direct3D terminology with little modifications. We do not have an issued state
1691 * because only the driver knows about it, but we have a created state because d3d
1692 * allows GetData on a created issue, but opengl doesn't
1694 enum query_state {
1695 QUERY_CREATED,
1696 QUERY_SIGNALLED,
1697 QUERY_BUILDING
1699 /*****************************************************************************
1700 * IWineD3DQueryImpl implementation structure (extends IUnknown)
1702 typedef struct IWineD3DQueryImpl
1704 const IWineD3DQueryVtbl *lpVtbl;
1705 LONG ref; /* Note: Ref counting not required */
1707 IUnknown *parent;
1708 /*TODO: replace with iface usage */
1709 #if 0
1710 IWineD3DDevice *wineD3DDevice;
1711 #else
1712 IWineD3DDeviceImpl *wineD3DDevice;
1713 #endif
1715 /* IWineD3DQuery fields */
1716 enum query_state state;
1717 WINED3DQUERYTYPE type;
1718 /* TODO: Think about using a IUnknown instead of a void* */
1719 void *extendedData;
1722 } IWineD3DQueryImpl;
1724 extern const IWineD3DQueryVtbl IWineD3DQuery_Vtbl;
1725 extern const IWineD3DQueryVtbl IWineD3DEventQuery_Vtbl;
1726 extern const IWineD3DQueryVtbl IWineD3DOcclusionQuery_Vtbl;
1728 /* Datastructures for IWineD3DQueryImpl.extendedData */
1729 typedef struct WineQueryOcclusionData {
1730 GLuint queryId;
1731 WineD3DContext *ctx;
1732 } WineQueryOcclusionData;
1734 typedef struct WineQueryEventData {
1735 GLuint fenceId;
1736 WineD3DContext *ctx;
1737 } WineQueryEventData;
1739 /*****************************************************************************
1740 * IWineD3DSwapChainImpl implementation structure (extends IUnknown)
1743 typedef struct IWineD3DSwapChainImpl
1745 /*IUnknown part*/
1746 const IWineD3DSwapChainVtbl *lpVtbl;
1747 LONG ref; /* Note: Ref counting not required */
1749 IUnknown *parent;
1750 IWineD3DDeviceImpl *wineD3DDevice;
1752 /* IWineD3DSwapChain fields */
1753 IWineD3DSurface **backBuffer;
1754 IWineD3DSurface *frontBuffer;
1755 BOOL wantsDepthStencilBuffer;
1756 WINED3DPRESENT_PARAMETERS presentParms;
1757 DWORD orig_width, orig_height;
1758 WINED3DFORMAT orig_fmt;
1759 WINED3DGAMMARAMP orig_gamma;
1761 long prev_time, frames; /* Performance tracking */
1762 unsigned int vSyncCounter;
1764 WineD3DContext **context; /* Later a array for multithreading */
1765 unsigned int num_contexts;
1767 HWND win_handle;
1768 } IWineD3DSwapChainImpl;
1770 extern const IWineD3DSwapChainVtbl IWineD3DSwapChain_Vtbl;
1771 const IWineD3DSwapChainVtbl IWineGDISwapChain_Vtbl;
1772 void x11_copy_to_screen(IWineD3DSwapChainImpl *This, LPRECT rc);
1774 HRESULT WINAPI IWineD3DBaseSwapChainImpl_QueryInterface(IWineD3DSwapChain *iface, REFIID riid, LPVOID *ppobj);
1775 ULONG WINAPI IWineD3DBaseSwapChainImpl_AddRef(IWineD3DSwapChain *iface);
1776 ULONG WINAPI IWineD3DBaseSwapChainImpl_Release(IWineD3DSwapChain *iface);
1777 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetParent(IWineD3DSwapChain *iface, IUnknown ** ppParent);
1778 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetFrontBufferData(IWineD3DSwapChain *iface, IWineD3DSurface *pDestSurface);
1779 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetBackBuffer(IWineD3DSwapChain *iface, UINT iBackBuffer, WINED3DBACKBUFFER_TYPE Type, IWineD3DSurface **ppBackBuffer);
1780 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetRasterStatus(IWineD3DSwapChain *iface, WINED3DRASTER_STATUS *pRasterStatus);
1781 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetDisplayMode(IWineD3DSwapChain *iface, WINED3DDISPLAYMODE*pMode);
1782 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetDevice(IWineD3DSwapChain *iface, IWineD3DDevice**ppDevice);
1783 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetPresentParameters(IWineD3DSwapChain *iface, WINED3DPRESENT_PARAMETERS *pPresentationParameters);
1784 HRESULT WINAPI IWineD3DBaseSwapChainImpl_SetGammaRamp(IWineD3DSwapChain *iface, DWORD Flags, CONST WINED3DGAMMARAMP *pRamp);
1785 HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetGammaRamp(IWineD3DSwapChain *iface, WINED3DGAMMARAMP *pRamp);
1787 WineD3DContext *IWineD3DSwapChainImpl_CreateContextForThread(IWineD3DSwapChain *iface);
1789 /*****************************************************************************
1790 * Utility function prototypes
1793 /* Trace routines */
1794 const char* debug_d3dformat(WINED3DFORMAT fmt);
1795 const char* debug_d3ddevicetype(WINED3DDEVTYPE devtype);
1796 const char* debug_d3dresourcetype(WINED3DRESOURCETYPE res);
1797 const char* debug_d3dusage(DWORD usage);
1798 const char* debug_d3dusagequery(DWORD usagequery);
1799 const char* debug_d3ddeclmethod(WINED3DDECLMETHOD method);
1800 const char* debug_d3ddecltype(WINED3DDECLTYPE type);
1801 const char* debug_d3ddeclusage(BYTE usage);
1802 const char* debug_d3dprimitivetype(WINED3DPRIMITIVETYPE PrimitiveType);
1803 const char* debug_d3drenderstate(DWORD state);
1804 const char* debug_d3dsamplerstate(DWORD state);
1805 const char* debug_d3dtexturefiltertype(WINED3DTEXTUREFILTERTYPE filter_type);
1806 const char* debug_d3dtexturestate(DWORD state);
1807 const char* debug_d3dtstype(WINED3DTRANSFORMSTATETYPE tstype);
1808 const char* debug_d3dpool(WINED3DPOOL pool);
1809 const char *debug_fbostatus(GLenum status);
1810 const char *debug_glerror(GLenum error);
1811 const char *debug_d3dbasis(WINED3DBASISTYPE basis);
1812 const char *debug_d3ddegree(WINED3DDEGREETYPE order);
1813 const char* debug_d3dtop(WINED3DTEXTUREOP d3dtop);
1815 /* Routines for GL <-> D3D values */
1816 GLenum StencilOp(DWORD op);
1817 GLenum CompareFunc(DWORD func);
1818 BOOL is_invalid_op(IWineD3DDeviceImpl *This, int stage, WINED3DTEXTUREOP op, DWORD arg1, DWORD arg2, DWORD arg3);
1819 void set_tex_op_nvrc(IWineD3DDevice *iface, BOOL is_alpha, int stage, WINED3DTEXTUREOP op, DWORD arg1, DWORD arg2, DWORD arg3, INT texture_idx, DWORD dst);
1820 void set_texture_matrix(const float *smat, DWORD flags, BOOL calculatedCoords, BOOL transformed, DWORD coordtype, BOOL ffp_can_disable_proj);
1821 void texture_activate_dimensions(DWORD stage, IWineD3DStateBlockImpl *stateblock, WineD3DContext *context);
1822 void sampler_texdim(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DContext *context);
1823 void tex_alphaop(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DContext *context);
1824 void apply_pixelshader(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DContext *context);
1826 void surface_set_compatible_renderbuffer(IWineD3DSurface *iface, unsigned int width, unsigned int height);
1827 GLenum surface_get_gl_buffer(IWineD3DSurface *iface, IWineD3DSwapChain *swapchain);
1828 void surface_modify_ds_location(IWineD3DSurface *iface, DWORD location);
1829 void surface_load_ds_location(IWineD3DSurface *iface, DWORD location);
1831 BOOL getColorBits(WINED3DFORMAT fmt, short *redSize, short *greenSize, short *blueSize, short *alphaSize, short *totalSize);
1832 BOOL getDepthStencilBits(WINED3DFORMAT fmt, short *depthSize, short *stencilSize);
1834 /* Math utils */
1835 void multiply_matrix(WINED3DMATRIX *dest, const WINED3DMATRIX *src1, const WINED3DMATRIX *src2);
1836 unsigned int count_bits(unsigned int mask);
1838 /*****************************************************************************
1839 * To enable calling of inherited functions, requires prototypes
1841 * Note: Only require classes which are subclassed, ie resource, basetexture,
1843 /*** IUnknown methods ***/
1844 extern HRESULT WINAPI IWineD3DResourceImpl_QueryInterface(IWineD3DResource *iface, REFIID riid, void** ppvObject);
1845 extern ULONG WINAPI IWineD3DResourceImpl_AddRef(IWineD3DResource *iface);
1846 extern ULONG WINAPI IWineD3DResourceImpl_Release(IWineD3DResource *iface);
1847 /*** IWineD3DResource methods ***/
1848 extern HRESULT WINAPI IWineD3DResourceImpl_GetParent(IWineD3DResource *iface, IUnknown **pParent);
1849 extern HRESULT WINAPI IWineD3DResourceImpl_GetDevice(IWineD3DResource *iface, IWineD3DDevice ** ppDevice);
1850 extern HRESULT WINAPI IWineD3DResourceImpl_SetPrivateData(IWineD3DResource *iface, REFGUID refguid, CONST void * pData, DWORD SizeOfData, DWORD Flags);
1851 extern HRESULT WINAPI IWineD3DResourceImpl_GetPrivateData(IWineD3DResource *iface, REFGUID refguid, void * pData, DWORD * pSizeOfData);
1852 extern HRESULT WINAPI IWineD3DResourceImpl_FreePrivateData(IWineD3DResource *iface, REFGUID refguid);
1853 extern DWORD WINAPI IWineD3DResourceImpl_SetPriority(IWineD3DResource *iface, DWORD PriorityNew);
1854 extern DWORD WINAPI IWineD3DResourceImpl_GetPriority(IWineD3DResource *iface);
1855 extern void WINAPI IWineD3DResourceImpl_PreLoad(IWineD3DResource *iface);
1856 extern void WINAPI IWineD3DResourceImpl_UnLoad(IWineD3DResource *iface);
1857 extern WINED3DRESOURCETYPE WINAPI IWineD3DResourceImpl_GetType(IWineD3DResource *iface);
1858 /*** class static members ***/
1859 void IWineD3DResourceImpl_CleanUp(IWineD3DResource *iface);
1861 /*** IUnknown methods ***/
1862 extern HRESULT WINAPI IWineD3DBaseTextureImpl_QueryInterface(IWineD3DBaseTexture *iface, REFIID riid, void** ppvObject);
1863 extern ULONG WINAPI IWineD3DBaseTextureImpl_AddRef(IWineD3DBaseTexture *iface);
1864 extern ULONG WINAPI IWineD3DBaseTextureImpl_Release(IWineD3DBaseTexture *iface);
1865 /*** IWineD3DResource methods ***/
1866 extern HRESULT WINAPI IWineD3DBaseTextureImpl_GetParent(IWineD3DBaseTexture *iface, IUnknown **pParent);
1867 extern HRESULT WINAPI IWineD3DBaseTextureImpl_GetDevice(IWineD3DBaseTexture *iface, IWineD3DDevice ** ppDevice);
1868 extern HRESULT WINAPI IWineD3DBaseTextureImpl_SetPrivateData(IWineD3DBaseTexture *iface, REFGUID refguid, CONST void * pData, DWORD SizeOfData, DWORD Flags);
1869 extern HRESULT WINAPI IWineD3DBaseTextureImpl_GetPrivateData(IWineD3DBaseTexture *iface, REFGUID refguid, void * pData, DWORD * pSizeOfData);
1870 extern HRESULT WINAPI IWineD3DBaseTextureImpl_FreePrivateData(IWineD3DBaseTexture *iface, REFGUID refguid);
1871 extern DWORD WINAPI IWineD3DBaseTextureImpl_SetPriority(IWineD3DBaseTexture *iface, DWORD PriorityNew);
1872 extern DWORD WINAPI IWineD3DBaseTextureImpl_GetPriority(IWineD3DBaseTexture *iface);
1873 extern void WINAPI IWineD3DBaseTextureImpl_PreLoad(IWineD3DBaseTexture *iface);
1874 extern void WINAPI IWineD3DBaseTextureImpl_UnLoad(IWineD3DBaseTexture *iface);
1875 extern WINED3DRESOURCETYPE WINAPI IWineD3DBaseTextureImpl_GetType(IWineD3DBaseTexture *iface);
1876 /*** IWineD3DBaseTexture methods ***/
1877 extern DWORD WINAPI IWineD3DBaseTextureImpl_SetLOD(IWineD3DBaseTexture *iface, DWORD LODNew);
1878 extern DWORD WINAPI IWineD3DBaseTextureImpl_GetLOD(IWineD3DBaseTexture *iface);
1879 extern DWORD WINAPI IWineD3DBaseTextureImpl_GetLevelCount(IWineD3DBaseTexture *iface);
1880 extern HRESULT WINAPI IWineD3DBaseTextureImpl_SetAutoGenFilterType(IWineD3DBaseTexture *iface, WINED3DTEXTUREFILTERTYPE FilterType);
1881 extern WINED3DTEXTUREFILTERTYPE WINAPI IWineD3DBaseTextureImpl_GetAutoGenFilterType(IWineD3DBaseTexture *iface);
1882 extern void WINAPI IWineD3DBaseTextureImpl_GenerateMipSubLevels(IWineD3DBaseTexture *iface);
1883 extern BOOL WINAPI IWineD3DBaseTextureImpl_SetDirty(IWineD3DBaseTexture *iface, BOOL);
1884 extern BOOL WINAPI IWineD3DBaseTextureImpl_GetDirty(IWineD3DBaseTexture *iface);
1886 extern BYTE* WINAPI IWineD3DVertexBufferImpl_GetMemory(IWineD3DVertexBuffer* iface, DWORD iOffset, GLint *vbo);
1887 extern HRESULT WINAPI IWineD3DVertexBufferImpl_ReleaseMemory(IWineD3DVertexBuffer* iface);
1888 extern HRESULT WINAPI IWineD3DBaseTextureImpl_BindTexture(IWineD3DBaseTexture *iface);
1889 extern void WINAPI IWineD3DBaseTextureImpl_ApplyStateChanges(IWineD3DBaseTexture *iface, const DWORD textureStates[WINED3D_HIGHEST_TEXTURE_STATE + 1], const DWORD samplerStates[WINED3D_HIGHEST_SAMPLER_STATE + 1]);
1890 /*** class static members ***/
1891 void IWineD3DBaseTextureImpl_CleanUp(IWineD3DBaseTexture *iface);
1893 typedef void (*SHADER_HANDLER) (struct SHADER_OPCODE_ARG*);
1895 /* Struct to maintain a list of GLSL shader programs and their associated pixel and
1896 * vertex shaders. A list of this type is maintained on the DeviceImpl, and is only
1897 * used if the user is using GLSL shaders. */
1898 struct glsl_shader_prog_link {
1899 struct list vshader_entry;
1900 struct list pshader_entry;
1901 GLhandleARB programId;
1902 GLhandleARB *vuniformF_locations;
1903 GLhandleARB *puniformF_locations;
1904 GLhandleARB vuniformI_locations[MAX_CONST_I];
1905 GLhandleARB puniformI_locations[MAX_CONST_I];
1906 GLhandleARB posFixup_location;
1907 GLhandleARB bumpenvmat_location[MAX_TEXTURES];
1908 GLhandleARB luminancescale_location[MAX_TEXTURES];
1909 GLhandleARB luminanceoffset_location[MAX_TEXTURES];
1910 GLhandleARB srgb_comparison_location;
1911 GLhandleARB srgb_mul_low_location;
1912 GLhandleARB ycorrection_location;
1913 GLenum vertex_color_clamp;
1914 GLhandleARB vshader;
1915 GLhandleARB pshader;
1918 typedef struct {
1919 GLhandleARB vshader;
1920 GLhandleARB pshader;
1921 } glsl_program_key_t;
1923 /* TODO: Make this dynamic, based on shader limits ? */
1924 #define MAX_REG_ADDR 1
1925 #define MAX_REG_TEMP 32
1926 #define MAX_REG_TEXCRD 8
1927 #define MAX_REG_INPUT 12
1928 #define MAX_REG_OUTPUT 12
1929 #define MAX_CONST_I 16
1930 #define MAX_CONST_B 16
1932 /* FIXME: This needs to go up to 2048 for
1933 * Shader model 3 according to msdn (and for software shaders) */
1934 #define MAX_LABELS 16
1936 typedef struct semantic {
1937 DWORD usage;
1938 DWORD reg;
1939 } semantic;
1941 typedef struct local_constant {
1942 struct list entry;
1943 unsigned int idx;
1944 DWORD value[4];
1945 } local_constant;
1947 typedef struct shader_reg_maps {
1949 char texcoord[MAX_REG_TEXCRD]; /* pixel < 3.0 */
1950 char temporary[MAX_REG_TEMP]; /* pixel, vertex */
1951 char address[MAX_REG_ADDR]; /* vertex */
1952 char packed_input[MAX_REG_INPUT]; /* pshader >= 3.0 */
1953 char packed_output[MAX_REG_OUTPUT]; /* vertex >= 3.0 */
1954 char attributes[MAX_ATTRIBS]; /* vertex */
1955 char labels[MAX_LABELS]; /* pixel, vertex */
1956 DWORD texcoord_mask[MAX_REG_TEXCRD]; /* vertex < 3.0 */
1958 /* Sampler usage tokens
1959 * Use 0 as default (bit 31 is always 1 on a valid token) */
1960 DWORD samplers[max(MAX_FRAGMENT_SAMPLERS, MAX_VERTEX_SAMPLERS)];
1961 BOOL bumpmat[MAX_TEXTURES], luminanceparams[MAX_TEXTURES];
1962 char usesnrm, vpos, usesdsy;
1963 char usesrelconstF;
1965 /* Whether or not loops are used in this shader, and nesting depth */
1966 unsigned loop_depth;
1968 /* Whether or not this shader uses fog */
1969 char fog;
1971 } shader_reg_maps;
1973 /* Undocumented opcode controls */
1974 #define INST_CONTROLS_SHIFT 16
1975 #define INST_CONTROLS_MASK 0x00ff0000
1977 typedef enum COMPARISON_TYPE {
1978 COMPARISON_GT = 1,
1979 COMPARISON_EQ = 2,
1980 COMPARISON_GE = 3,
1981 COMPARISON_LT = 4,
1982 COMPARISON_NE = 5,
1983 COMPARISON_LE = 6
1984 } COMPARISON_TYPE;
1986 typedef struct SHADER_OPCODE {
1987 unsigned int opcode;
1988 const char* name;
1989 const char* glname;
1990 char dst_token;
1991 CONST UINT num_params;
1992 SHADER_HANDLER hw_fct;
1993 SHADER_HANDLER hw_glsl_fct;
1994 DWORD min_version;
1995 DWORD max_version;
1996 } SHADER_OPCODE;
1998 typedef struct SHADER_OPCODE_ARG {
1999 IWineD3DBaseShader* shader;
2000 shader_reg_maps* reg_maps;
2001 CONST SHADER_OPCODE* opcode;
2002 DWORD opcode_token;
2003 DWORD dst;
2004 DWORD dst_addr;
2005 DWORD predicate;
2006 DWORD src[4];
2007 DWORD src_addr[4];
2008 SHADER_BUFFER* buffer;
2009 } SHADER_OPCODE_ARG;
2011 typedef struct SHADER_LIMITS {
2012 unsigned int temporary;
2013 unsigned int texcoord;
2014 unsigned int sampler;
2015 unsigned int constant_int;
2016 unsigned int constant_float;
2017 unsigned int constant_bool;
2018 unsigned int address;
2019 unsigned int packed_output;
2020 unsigned int packed_input;
2021 unsigned int attributes;
2022 unsigned int label;
2023 } SHADER_LIMITS;
2025 /** Keeps track of details for TEX_M#x# shader opcodes which need to
2026 maintain state information between multiple codes */
2027 typedef struct SHADER_PARSE_STATE {
2028 unsigned int current_row;
2029 DWORD texcoord_w[2];
2030 } SHADER_PARSE_STATE;
2032 #ifdef __GNUC__
2033 #define PRINTF_ATTR(fmt,args) __attribute__((format (printf,fmt,args)))
2034 #else
2035 #define PRINTF_ATTR(fmt,args)
2036 #endif
2038 /* Base Shader utility functions.
2039 * (may move callers into the same file in the future) */
2040 extern int shader_addline(
2041 SHADER_BUFFER* buffer,
2042 const char* fmt, ...) PRINTF_ATTR(2,3);
2044 extern const SHADER_OPCODE* shader_get_opcode(
2045 IWineD3DBaseShader *iface,
2046 const DWORD code);
2048 /* Vertex shader utility functions */
2049 extern BOOL vshader_get_input(
2050 IWineD3DVertexShader* iface,
2051 BYTE usage_req, BYTE usage_idx_req,
2052 unsigned int* regnum);
2054 extern BOOL vshader_input_is_color(
2055 IWineD3DVertexShader* iface,
2056 unsigned int regnum);
2058 extern HRESULT allocate_shader_constants(IWineD3DStateBlockImpl* object);
2060 /* ARB_[vertex/fragment]_program helper functions */
2061 extern void shader_arb_load_constants(
2062 IWineD3DDevice* device,
2063 char usePixelShader,
2064 char useVertexShader);
2066 /* ARB shader program Prototypes */
2067 extern void shader_hw_def(SHADER_OPCODE_ARG *arg);
2069 /* ARB pixel shader prototypes */
2070 extern void pshader_hw_bem(SHADER_OPCODE_ARG* arg);
2071 extern void pshader_hw_cnd(SHADER_OPCODE_ARG* arg);
2072 extern void pshader_hw_cmp(SHADER_OPCODE_ARG* arg);
2073 extern void pshader_hw_map2gl(SHADER_OPCODE_ARG* arg);
2074 extern void pshader_hw_tex(SHADER_OPCODE_ARG* arg);
2075 extern void pshader_hw_texcoord(SHADER_OPCODE_ARG* arg);
2076 extern void pshader_hw_texreg2ar(SHADER_OPCODE_ARG* arg);
2077 extern void pshader_hw_texreg2gb(SHADER_OPCODE_ARG* arg);
2078 extern void pshader_hw_texbem(SHADER_OPCODE_ARG* arg);
2079 extern void pshader_hw_texm3x2pad(SHADER_OPCODE_ARG* arg);
2080 extern void pshader_hw_texm3x2tex(SHADER_OPCODE_ARG* arg);
2081 extern void pshader_hw_texm3x3pad(SHADER_OPCODE_ARG* arg);
2082 extern void pshader_hw_texm3x3tex(SHADER_OPCODE_ARG* arg);
2083 extern void pshader_hw_texm3x3spec(SHADER_OPCODE_ARG* arg);
2084 extern void pshader_hw_texm3x3vspec(SHADER_OPCODE_ARG* arg);
2085 extern void pshader_hw_texdepth(SHADER_OPCODE_ARG* arg);
2086 extern void pshader_hw_texkill(SHADER_OPCODE_ARG* arg);
2087 extern void pshader_hw_texdp3tex(SHADER_OPCODE_ARG* arg);
2088 extern void pshader_hw_texdp3(SHADER_OPCODE_ARG* arg);
2089 extern void pshader_hw_texm3x3(SHADER_OPCODE_ARG* arg);
2090 extern void pshader_hw_texm3x2depth(SHADER_OPCODE_ARG* arg);
2091 extern void pshader_hw_dp2add(SHADER_OPCODE_ARG* arg);
2092 extern void pshader_hw_texreg2rgb(SHADER_OPCODE_ARG* arg);
2094 /* ARB vertex / pixel shader common prototypes */
2095 extern void shader_hw_nrm(SHADER_OPCODE_ARG* arg);
2096 extern void shader_hw_sincos(SHADER_OPCODE_ARG* arg);
2097 extern void shader_hw_mnxn(SHADER_OPCODE_ARG* arg);
2099 /* ARB vertex shader prototypes */
2100 extern void vshader_hw_map2gl(SHADER_OPCODE_ARG* arg);
2101 extern void vshader_hw_rsq_rcp(SHADER_OPCODE_ARG* arg);
2103 /* GLSL helper functions */
2104 extern void shader_glsl_add_instruction_modifiers(SHADER_OPCODE_ARG *arg);
2105 extern void shader_glsl_load_constants(
2106 IWineD3DDevice* device,
2107 char usePixelShader,
2108 char useVertexShader);
2110 /** The following translate DirectX pixel/vertex shader opcodes to GLSL lines */
2111 extern void shader_glsl_cross(SHADER_OPCODE_ARG* arg);
2112 extern void shader_glsl_map2gl(SHADER_OPCODE_ARG* arg);
2113 extern void shader_glsl_arith(SHADER_OPCODE_ARG* arg);
2114 extern void shader_glsl_mov(SHADER_OPCODE_ARG* arg);
2115 extern void shader_glsl_mad(SHADER_OPCODE_ARG* arg);
2116 extern void shader_glsl_mnxn(SHADER_OPCODE_ARG* arg);
2117 extern void shader_glsl_lrp(SHADER_OPCODE_ARG* arg);
2118 extern void shader_glsl_dot(SHADER_OPCODE_ARG* arg);
2119 extern void shader_glsl_rcp(SHADER_OPCODE_ARG* arg);
2120 extern void shader_glsl_rsq(SHADER_OPCODE_ARG* arg);
2121 extern void shader_glsl_cnd(SHADER_OPCODE_ARG* arg);
2122 extern void shader_glsl_compare(SHADER_OPCODE_ARG* arg);
2123 extern void shader_glsl_def(SHADER_OPCODE_ARG* arg);
2124 extern void shader_glsl_defi(SHADER_OPCODE_ARG* arg);
2125 extern void shader_glsl_defb(SHADER_OPCODE_ARG* arg);
2126 extern void shader_glsl_expp(SHADER_OPCODE_ARG* arg);
2127 extern void shader_glsl_cmp(SHADER_OPCODE_ARG* arg);
2128 extern void shader_glsl_lit(SHADER_OPCODE_ARG* arg);
2129 extern void shader_glsl_dst(SHADER_OPCODE_ARG* arg);
2130 extern void shader_glsl_sincos(SHADER_OPCODE_ARG* arg);
2131 extern void shader_glsl_loop(SHADER_OPCODE_ARG* arg);
2132 extern void shader_glsl_end(SHADER_OPCODE_ARG* arg);
2133 extern void shader_glsl_if(SHADER_OPCODE_ARG* arg);
2134 extern void shader_glsl_ifc(SHADER_OPCODE_ARG* arg);
2135 extern void shader_glsl_else(SHADER_OPCODE_ARG* arg);
2136 extern void shader_glsl_break(SHADER_OPCODE_ARG* arg);
2137 extern void shader_glsl_breakc(SHADER_OPCODE_ARG* arg);
2138 extern void shader_glsl_rep(SHADER_OPCODE_ARG* arg);
2139 extern void shader_glsl_call(SHADER_OPCODE_ARG* arg);
2140 extern void shader_glsl_callnz(SHADER_OPCODE_ARG* arg);
2141 extern void shader_glsl_label(SHADER_OPCODE_ARG* arg);
2142 extern void shader_glsl_pow(SHADER_OPCODE_ARG* arg);
2143 extern void shader_glsl_log(SHADER_OPCODE_ARG* arg);
2144 extern void shader_glsl_texldl(SHADER_OPCODE_ARG* arg);
2146 /** GLSL Pixel Shader Prototypes */
2147 extern void pshader_glsl_tex(SHADER_OPCODE_ARG* arg);
2148 extern void pshader_glsl_texcoord(SHADER_OPCODE_ARG* arg);
2149 extern void pshader_glsl_texdp3tex(SHADER_OPCODE_ARG* arg);
2150 extern void pshader_glsl_texdp3(SHADER_OPCODE_ARG* arg);
2151 extern void pshader_glsl_texdepth(SHADER_OPCODE_ARG* arg);
2152 extern void pshader_glsl_texm3x2depth(SHADER_OPCODE_ARG* arg);
2153 extern void pshader_glsl_texm3x2pad(SHADER_OPCODE_ARG* arg);
2154 extern void pshader_glsl_texm3x2tex(SHADER_OPCODE_ARG* arg);
2155 extern void pshader_glsl_texm3x3(SHADER_OPCODE_ARG* arg);
2156 extern void pshader_glsl_texm3x3pad(SHADER_OPCODE_ARG* arg);
2157 extern void pshader_glsl_texm3x3tex(SHADER_OPCODE_ARG* arg);
2158 extern void pshader_glsl_texm3x3spec(SHADER_OPCODE_ARG* arg);
2159 extern void pshader_glsl_texm3x3vspec(SHADER_OPCODE_ARG* arg);
2160 extern void pshader_glsl_texkill(SHADER_OPCODE_ARG* arg);
2161 extern void pshader_glsl_texbem(SHADER_OPCODE_ARG* arg);
2162 extern void pshader_glsl_bem(SHADER_OPCODE_ARG* arg);
2163 extern void pshader_glsl_texreg2ar(SHADER_OPCODE_ARG* arg);
2164 extern void pshader_glsl_texreg2gb(SHADER_OPCODE_ARG* arg);
2165 extern void pshader_glsl_texreg2rgb(SHADER_OPCODE_ARG* arg);
2166 extern void pshader_glsl_dp2add(SHADER_OPCODE_ARG* arg);
2167 extern void pshader_glsl_input_pack(
2168 SHADER_BUFFER* buffer,
2169 semantic* semantics_out,
2170 IWineD3DPixelShader *iface);
2172 /*****************************************************************************
2173 * IDirect3DBaseShader implementation structure
2175 typedef struct IWineD3DBaseShaderClass
2177 LONG ref;
2178 DWORD hex_version;
2179 SHADER_LIMITS limits;
2180 SHADER_PARSE_STATE parse_state;
2181 CONST SHADER_OPCODE *shader_ins;
2182 DWORD *function;
2183 UINT functionLength;
2184 GLuint prgId;
2185 BOOL is_compiled;
2186 UINT cur_loop_depth, cur_loop_regno;
2187 BOOL load_local_constsF;
2189 /* Type of shader backend */
2190 int shader_mode;
2192 /* Programs this shader is linked with */
2193 struct list linked_programs;
2195 /* Immediate constants (override global ones) */
2196 struct list constantsB;
2197 struct list constantsF;
2198 struct list constantsI;
2199 shader_reg_maps reg_maps;
2201 /* Pixel formats of sampled textures, for format conversion. This
2202 * represents the formats found during compilation, it is not initialized
2203 * on the first parser pass. It is needed to check if the shader
2204 * needs recompilation to adjust the format conversion
2206 WINED3DFORMAT sampled_format[MAX_COMBINED_SAMPLERS];
2207 UINT sampled_samplers[MAX_COMBINED_SAMPLERS];
2208 UINT num_sampled_samplers;
2210 UINT recompile_count;
2212 /* Pointer to the parent device */
2213 IWineD3DDevice *device;
2214 struct list shader_list_entry;
2216 } IWineD3DBaseShaderClass;
2218 typedef struct IWineD3DBaseShaderImpl {
2219 /* IUnknown */
2220 const IWineD3DBaseShaderVtbl *lpVtbl;
2222 /* IWineD3DBaseShader */
2223 IWineD3DBaseShaderClass baseShader;
2224 } IWineD3DBaseShaderImpl;
2226 HRESULT WINAPI IWineD3DBaseShaderImpl_QueryInterface(IWineD3DBaseShader *iface, REFIID riid, LPVOID *ppobj);
2227 ULONG WINAPI IWineD3DBaseShaderImpl_AddRef(IWineD3DBaseShader *iface);
2228 ULONG WINAPI IWineD3DBaseShaderImpl_Release(IWineD3DBaseShader *iface);
2230 extern HRESULT shader_get_registers_used(
2231 IWineD3DBaseShader *iface,
2232 shader_reg_maps* reg_maps,
2233 semantic* semantics_in,
2234 semantic* semantics_out,
2235 CONST DWORD* pToken,
2236 IWineD3DStateBlockImpl *stateBlock);
2238 extern void shader_generate_glsl_declarations(
2239 IWineD3DBaseShader *iface,
2240 shader_reg_maps* reg_maps,
2241 SHADER_BUFFER* buffer,
2242 WineD3D_GL_Info* gl_info);
2244 extern void shader_generate_arb_declarations(
2245 IWineD3DBaseShader *iface,
2246 shader_reg_maps* reg_maps,
2247 SHADER_BUFFER* buffer,
2248 WineD3D_GL_Info* gl_info);
2250 extern void shader_generate_main(
2251 IWineD3DBaseShader *iface,
2252 SHADER_BUFFER* buffer,
2253 shader_reg_maps* reg_maps,
2254 CONST DWORD* pFunction);
2256 extern void shader_dump_ins_modifiers(
2257 const DWORD output);
2259 extern void shader_dump_param(
2260 IWineD3DBaseShader *iface,
2261 const DWORD param,
2262 const DWORD addr_token,
2263 int input);
2265 extern void shader_trace_init(
2266 IWineD3DBaseShader *iface,
2267 const DWORD* pFunction);
2269 extern int shader_get_param(
2270 IWineD3DBaseShader* iface,
2271 const DWORD* pToken,
2272 DWORD* param,
2273 DWORD* addr_token);
2275 extern int shader_skip_unrecognized(
2276 IWineD3DBaseShader* iface,
2277 const DWORD* pToken);
2279 extern void print_glsl_info_log(
2280 WineD3D_GL_Info *gl_info,
2281 GLhandleARB obj);
2283 static inline int shader_get_regtype(const DWORD param) {
2284 return (((param & WINED3DSP_REGTYPE_MASK) >> WINED3DSP_REGTYPE_SHIFT) |
2285 ((param & WINED3DSP_REGTYPE_MASK2) >> WINED3DSP_REGTYPE_SHIFT2));
2288 static inline int shader_get_writemask(const DWORD param) {
2289 return param & WINED3DSP_WRITEMASK_ALL;
2292 extern unsigned int shader_get_float_offset(const DWORD reg);
2294 static inline BOOL shader_is_pshader_version(DWORD token) {
2295 return 0xFFFF0000 == (token & 0xFFFF0000);
2298 static inline BOOL shader_is_vshader_version(DWORD token) {
2299 return 0xFFFE0000 == (token & 0xFFFF0000);
2302 static inline BOOL shader_is_comment(DWORD token) {
2303 return WINED3DSIO_COMMENT == (token & WINED3DSI_OPCODE_MASK);
2306 static inline BOOL shader_is_scalar(DWORD param) {
2307 DWORD reg_type = shader_get_regtype(param);
2308 DWORD reg_num;
2310 switch (reg_type) {
2311 case WINED3DSPR_RASTOUT:
2312 if ((param & WINED3DSP_REGNUM_MASK) != 0) {
2313 /* oFog & oPts */
2314 return TRUE;
2316 /* oPos */
2317 return FALSE;
2319 case WINED3DSPR_DEPTHOUT: /* oDepth */
2320 case WINED3DSPR_CONSTBOOL: /* b# */
2321 case WINED3DSPR_LOOP: /* aL */
2322 case WINED3DSPR_PREDICATE: /* p0 */
2323 return TRUE;
2325 case WINED3DSPR_MISCTYPE:
2326 reg_num = param & WINED3DSP_REGNUM_MASK;
2327 switch(reg_num) {
2328 case 0: /* vPos */
2329 return FALSE;
2330 case 1: /* vFace */
2331 return TRUE;
2332 default:
2333 return FALSE;
2336 default:
2337 return FALSE;
2341 static inline BOOL shader_constant_is_local(IWineD3DBaseShaderImpl* This, DWORD reg) {
2342 local_constant* lconst;
2344 if(This->baseShader.load_local_constsF) return FALSE;
2345 LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry) {
2346 if(lconst->idx == reg) return TRUE;
2348 return FALSE;
2352 /* Internally used shader constants. Applications can use constants 0 to GL_LIMITS(vshader_constantsF) - 1,
2353 * so upload them above that
2355 #define ARB_SHADER_PRIVCONST_BASE GL_LIMITS(vshader_constantsF)
2356 #define ARB_SHADER_PRIVCONST_POS ARB_SHADER_PRIVCONST_BASE + 0
2358 /*****************************************************************************
2359 * IDirect3DVertexShader implementation structure
2361 typedef struct IWineD3DVertexShaderImpl {
2362 /* IUnknown parts*/
2363 const IWineD3DVertexShaderVtbl *lpVtbl;
2365 /* IWineD3DBaseShader */
2366 IWineD3DBaseShaderClass baseShader;
2368 /* IWineD3DVertexShaderImpl */
2369 IUnknown *parent;
2371 DWORD usage;
2373 /* Vertex shader input and output semantics */
2374 semantic semantics_in [MAX_ATTRIBS];
2375 semantic semantics_out [MAX_REG_OUTPUT];
2377 /* Ordered array of attributes that are swizzled */
2378 attrib_declaration swizzled_attribs [MAX_ATTRIBS];
2379 UINT num_swizzled_attribs;
2381 /* run time data... */
2382 VSHADERDATA *data;
2383 UINT min_rel_offset, max_rel_offset;
2384 UINT rel_offset;
2386 UINT recompile_count;
2387 #if 0 /* needs reworking */
2388 /* run time data */
2389 VSHADERINPUTDATA input;
2390 VSHADEROUTPUTDATA output;
2391 #endif
2392 } IWineD3DVertexShaderImpl;
2393 extern const SHADER_OPCODE IWineD3DVertexShaderImpl_shader_ins[];
2394 extern const IWineD3DVertexShaderVtbl IWineD3DVertexShader_Vtbl;
2396 /*****************************************************************************
2397 * IDirect3DPixelShader implementation structure
2400 enum vertexprocessing_mode {
2401 fixedfunction,
2402 vertexshader,
2403 pretransformed
2406 struct stb_const_desc {
2407 char texunit;
2408 UINT const_num;
2411 typedef struct IWineD3DPixelShaderImpl {
2412 /* IUnknown parts */
2413 const IWineD3DPixelShaderVtbl *lpVtbl;
2415 /* IWineD3DBaseShader */
2416 IWineD3DBaseShaderClass baseShader;
2418 /* IWineD3DPixelShaderImpl */
2419 IUnknown *parent;
2421 /* Pixel shader input semantics */
2422 semantic semantics_in [MAX_REG_INPUT];
2423 DWORD input_reg_map[MAX_REG_INPUT];
2424 BOOL input_reg_used[MAX_REG_INPUT];
2425 int declared_in_count;
2427 /* run time data */
2428 PSHADERDATA *data;
2430 /* Some information about the shader behavior */
2431 struct stb_const_desc bumpenvmatconst[MAX_TEXTURES];
2432 char numbumpenvmatconsts;
2433 struct stb_const_desc luminanceconst[MAX_TEXTURES];
2434 char srgb_enabled;
2435 char srgb_mode_hardcoded;
2436 UINT srgb_low_const;
2437 UINT srgb_cmp_const;
2438 char vpos_uniform;
2439 BOOL render_offscreen;
2440 UINT height;
2441 enum vertexprocessing_mode vertexprocessing;
2443 #if 0 /* needs reworking */
2444 PSHADERINPUTDATA input;
2445 PSHADEROUTPUTDATA output;
2446 #endif
2447 } IWineD3DPixelShaderImpl;
2449 extern const SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[];
2450 extern const IWineD3DPixelShaderVtbl IWineD3DPixelShader_Vtbl;
2452 /* sRGB correction constants */
2453 static const float srgb_cmp = 0.0031308;
2454 static const float srgb_mul_low = 12.92;
2455 static const float srgb_pow = 0.41666;
2456 static const float srgb_mul_high = 1.055;
2457 static const float srgb_sub_high = 0.055;
2459 /*****************************************************************************
2460 * IWineD3DPalette implementation structure
2462 struct IWineD3DPaletteImpl {
2463 /* IUnknown parts */
2464 const IWineD3DPaletteVtbl *lpVtbl;
2465 LONG ref;
2467 IUnknown *parent;
2468 IWineD3DDeviceImpl *wineD3DDevice;
2470 /* IWineD3DPalette */
2471 HPALETTE hpal;
2472 WORD palVersion; /*| */
2473 WORD palNumEntries; /*| LOGPALETTE */
2474 PALETTEENTRY palents[256]; /*| */
2475 /* This is to store the palette in 'screen format' */
2476 int screen_palents[256];
2477 DWORD Flags;
2480 extern const IWineD3DPaletteVtbl IWineD3DPalette_Vtbl;
2481 DWORD IWineD3DPaletteImpl_Size(DWORD dwFlags);
2483 /* DirectDraw utility functions */
2484 extern WINED3DFORMAT pixelformat_for_depth(DWORD depth);
2486 /*****************************************************************************
2487 * Pixel format management
2489 typedef struct {
2490 WINED3DFORMAT format;
2491 DWORD alphaMask, redMask, greenMask, blueMask;
2492 UINT bpp;
2493 short depthSize, stencilSize;
2494 BOOL isFourcc;
2495 } StaticPixelFormatDesc;
2497 const StaticPixelFormatDesc *getFormatDescEntry(WINED3DFORMAT fmt,
2498 WineD3D_GL_Info *gl_info,
2499 const GlPixelFormatDesc **glDesc);
2501 static inline BOOL use_vs(IWineD3DDeviceImpl *device) {
2502 return (device->vs_selected_mode != SHADER_NONE
2503 && device->stateBlock->vertexShader
2504 && ((IWineD3DVertexShaderImpl *)device->stateBlock->vertexShader)->baseShader.function
2505 && !device->strided_streams.u.s.position_transformed);
2508 static inline BOOL use_ps(IWineD3DDeviceImpl *device) {
2509 return (device->ps_selected_mode != SHADER_NONE
2510 && device->stateBlock->pixelShader
2511 && ((IWineD3DPixelShaderImpl *)device->stateBlock->pixelShader)->baseShader.function);
2514 void stretch_rect_fbo(IWineD3DDevice *iface, IWineD3DSurface *src_surface, WINED3DRECT *src_rect,
2515 IWineD3DSurface *dst_surface, WINED3DRECT *dst_rect, const WINED3DTEXTUREFILTERTYPE filter, BOOL flip);
2516 void bind_fbo(IWineD3DDevice *iface, GLenum target, GLuint *fbo);
2517 void attach_depth_stencil_fbo(IWineD3DDeviceImpl *This, GLenum fbo_target, IWineD3DSurface *depth_stencil, BOOL use_render_buffer);
2518 void attach_surface_fbo(IWineD3DDeviceImpl *This, GLenum fbo_target, DWORD idx, IWineD3DSurface *surface);
2519 void depth_blt(IWineD3DDevice *iface, GLuint texture);
2521 #endif