user32/tests: Reorganize the DPI tests.
[wine.git] / dlls / ddraw / ddraw_private.h
blobb8552af28714cdbc6465a5075bcac7457ca42231
1 /*
2 * Copyright 2006 Stefan Dösinger
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
20 #define __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
22 #include <assert.h>
23 #include <limits.h>
24 #define COBJMACROS
25 #define NONAMELESSSTRUCT
26 #define NONAMELESSUNION
27 #include "wine/debug.h"
28 #include "wine/heap.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
34 #include "d3d.h"
35 #include "ddraw.h"
36 #ifdef DDRAW_INIT_GUID
37 #include "initguid.h"
38 #endif
39 #include "wine/list.h"
40 #include "wine/wined3d.h"
42 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
44 extern const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops DECLSPEC_HIDDEN;
45 extern DWORD force_refresh_rate DECLSPEC_HIDDEN;
47 /*****************************************************************************
48 * IDirectDraw implementation structure
49 *****************************************************************************/
50 struct FvfToDecl
52 DWORD fvf;
53 struct wined3d_vertex_declaration *decl;
56 #define DDRAW_INITIALIZED 0x00000001
57 #define DDRAW_D3D_INITIALIZED 0x00000002
58 #define DDRAW_RESTORE_MODE 0x00000004
59 #define DDRAW_NO3D 0x00000008
60 #define DDRAW_SCL_DDRAW1 0x00000010
61 #define DDRAW_SCL_RECURSIVE 0x00000020
62 #define DDRAW_SWAPPED 0x00000040
64 #define DDRAW_STRIDE_ALIGNMENT 8
66 #define DDRAW_WINED3D_FLAGS (WINED3D_LEGACY_DEPTH_BIAS | WINED3D_VIDMEM_ACCOUNTING \
67 | WINED3D_RESTORE_MODE_ON_ACTIVATE | WINED3D_FOCUS_MESSAGES | WINED3D_PIXEL_CENTER_INTEGER \
68 | WINED3D_LEGACY_UNBOUND_RESOURCE_COLOR | WINED3D_NO_PRIMITIVE_RESTART \
69 | WINED3D_LEGACY_CUBEMAP_FILTERING)
71 enum ddraw_device_state
73 DDRAW_DEVICE_STATE_OK,
74 DDRAW_DEVICE_STATE_LOST,
75 DDRAW_DEVICE_STATE_NOT_RESTORED,
78 struct ddraw
80 /* Interfaces */
81 IDirectDraw7 IDirectDraw7_iface;
82 IDirectDraw4 IDirectDraw4_iface;
83 IDirectDraw2 IDirectDraw2_iface;
84 IDirectDraw IDirectDraw_iface;
85 IDirect3D7 IDirect3D7_iface;
86 IDirect3D3 IDirect3D3_iface;
87 IDirect3D2 IDirect3D2_iface;
88 IDirect3D IDirect3D_iface;
89 struct wined3d_device_parent device_parent;
91 /* See comment in IDirectDraw::AddRef */
92 LONG ref7, ref4, ref2, ref3, ref1, numIfaces;
94 struct wined3d *wined3d;
95 struct wined3d_device *wined3d_device;
96 DWORD flags;
97 LONG device_state;
99 struct ddraw_surface *primary;
100 RECT primary_lock;
101 struct wined3d_texture *wined3d_frontbuffer;
102 struct wined3d_swapchain *wined3d_swapchain;
103 HWND swapchain_window;
105 /* DirectDraw things, which are not handled by WineD3D */
106 DWORD cooperative_level;
108 /* D3D things */
109 HWND d3d_window;
110 struct d3d_device *d3ddevice;
111 int d3dversion;
113 /* Various HWNDs */
114 HWND focuswindow;
115 HWND devicewindow;
116 HWND dest_window;
118 /* For the dll unload cleanup code */
119 struct list ddraw_list_entry;
120 /* The surface list - can't relay this to WineD3D
121 * because of IParent
123 struct list surface_list;
125 /* FVF management */
126 struct FvfToDecl *decls;
127 UINT numConvertedDecls, declArraySize;
130 #define DDRAW_WINDOW_CLASS_NAME "DirectDrawDeviceWnd"
132 HRESULT ddraw_init(struct ddraw *ddraw, DWORD flags, enum wined3d_device_type device_type) DECLSPEC_HIDDEN;
133 void ddraw_d3dcaps1_from_7(D3DDEVICEDESC *caps1, D3DDEVICEDESC7 *caps7) DECLSPEC_HIDDEN;
134 HRESULT ddraw_get_d3dcaps(const struct ddraw *ddraw, D3DDEVICEDESC7 *caps) DECLSPEC_HIDDEN;
135 void ddraw_update_lost_surfaces(struct ddraw *ddraw) DECLSPEC_HIDDEN;
137 static inline void ddraw_set_swapchain_window(struct ddraw *ddraw, HWND window)
139 if (window == GetDesktopWindow())
140 window = NULL;
141 ddraw->swapchain_window = window;
144 /* Utility functions */
145 void DDRAW_Convert_DDSCAPS_1_To_2(const DDSCAPS *pIn, DDSCAPS2 *pOut) DECLSPEC_HIDDEN;
146 void DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(const DDDEVICEIDENTIFIER2 *pIn, DDDEVICEIDENTIFIER *pOut) DECLSPEC_HIDDEN;
147 struct wined3d_vertex_declaration *ddraw_find_decl(struct ddraw *ddraw, DWORD fvf) DECLSPEC_HIDDEN;
149 struct ddraw_surface
151 /* IUnknown fields */
152 IDirectDrawSurface7 IDirectDrawSurface7_iface;
153 IDirectDrawSurface4 IDirectDrawSurface4_iface;
154 IDirectDrawSurface3 IDirectDrawSurface3_iface;
155 IDirectDrawSurface2 IDirectDrawSurface2_iface;
156 IDirectDrawSurface IDirectDrawSurface_iface;
157 IDirectDrawGammaControl IDirectDrawGammaControl_iface;
158 IDirect3DTexture2 IDirect3DTexture2_iface;
159 IDirect3DTexture IDirect3DTexture_iface;
161 LONG ref7, ref4, ref3, ref2, ref1, iface_count, gamma_count;
162 IUnknown *ifaceToRelease;
163 IUnknown *texture_outer;
165 int version;
167 /* Connections to other Objects */
168 struct ddraw *ddraw;
169 struct wined3d_texture *wined3d_texture;
170 unsigned int sub_resource_idx;
171 struct wined3d_rendertarget_view *wined3d_rtv;
172 struct wined3d_private_store private_store;
173 struct d3d_device *device1;
175 /* This implementation handles attaching surfaces to other surfaces */
176 struct ddraw_surface *next_attached;
177 struct ddraw_surface *first_attached;
178 IUnknown *attached_iface;
180 /* Complex surfaces are organized in a tree, although the tree is degenerated to a list in most cases.
181 * In mipmap and primary surfaces each level has only one attachment, which is the next surface level.
182 * Only the cube texture root has 6 surfaces attached, which then have a normal mipmap chain attached
183 * to them. So hardcode the array to 6, a dynamic array or a list would be an overkill.
185 #define MAX_COMPLEX_ATTACHED 6
186 struct ddraw_surface *complex_array[MAX_COMPLEX_ATTACHED];
187 /* You can't traverse the tree upwards. Only a flag for Surface::Release because it's needed there,
188 * but no pointer to prevent temptations to traverse it in the wrong direction.
190 BOOL is_complex_root;
191 BOOL is_lost;
193 /* Surface description, for GetAttachedSurface */
194 DDSURFACEDESC2 surface_desc;
196 /* Clipper objects */
197 struct ddraw_clipper *clipper;
198 struct ddraw_palette *palette;
200 /* For the ddraw surface list */
201 struct list surface_list_entry;
203 DWORD Handle;
204 HDC dc;
207 struct ddraw_texture
209 unsigned int version;
210 DDSURFACEDESC2 surface_desc;
212 struct ddraw_surface *root;
213 struct wined3d_device *wined3d_device;
216 HRESULT ddraw_surface_create(struct ddraw *ddraw, const DDSURFACEDESC2 *surface_desc,
217 struct ddraw_surface **surface, IUnknown *outer_unknown, unsigned int version) DECLSPEC_HIDDEN;
218 struct wined3d_rendertarget_view *ddraw_surface_get_rendertarget_view(struct ddraw_surface *surface) DECLSPEC_HIDDEN;
219 void ddraw_surface_init(struct ddraw_surface *surface, struct ddraw *ddraw,
220 struct wined3d_texture *wined3d_texture, unsigned int sub_resource_idx,
221 const struct wined3d_parent_ops **parent_ops) DECLSPEC_HIDDEN;
222 HRESULT ddraw_surface_update_frontbuffer(struct ddraw_surface *surface,
223 const RECT *rect, BOOL read, unsigned int swap_interval) DECLSPEC_HIDDEN;
225 static inline struct ddraw_surface *impl_from_IDirect3DTexture(IDirect3DTexture *iface)
227 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirect3DTexture_iface);
230 static inline struct ddraw_surface *impl_from_IDirect3DTexture2(IDirect3DTexture2 *iface)
232 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirect3DTexture2_iface);
235 static inline struct ddraw_surface *impl_from_IDirectDrawSurface(IDirectDrawSurface *iface)
237 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface_iface);
240 static inline struct ddraw_surface *impl_from_IDirectDrawSurface2(IDirectDrawSurface2 *iface)
242 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface2_iface);
245 static inline struct ddraw_surface *impl_from_IDirectDrawSurface3(IDirectDrawSurface3 *iface)
247 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface3_iface);
250 static inline struct ddraw_surface *impl_from_IDirectDrawSurface4(IDirectDrawSurface4 *iface)
252 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface4_iface);
255 static inline struct ddraw_surface *impl_from_IDirectDrawSurface7(IDirectDrawSurface7 *iface)
257 return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface7_iface);
260 struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface(IDirectDrawSurface *iface) DECLSPEC_HIDDEN;
261 struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface4(IDirectDrawSurface4 *iface) DECLSPEC_HIDDEN;
262 struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface7(IDirectDrawSurface7 *iface) DECLSPEC_HIDDEN;
264 struct ddraw_surface *unsafe_impl_from_IDirect3DTexture(IDirect3DTexture *iface) DECLSPEC_HIDDEN;
265 struct ddraw_surface *unsafe_impl_from_IDirect3DTexture2(IDirect3DTexture2 *iface) DECLSPEC_HIDDEN;
267 #define DDRAW_INVALID_HANDLE ~0U
269 enum ddraw_handle_type
271 DDRAW_HANDLE_FREE,
272 DDRAW_HANDLE_MATERIAL,
273 DDRAW_HANDLE_MATRIX,
274 DDRAW_HANDLE_STATEBLOCK,
275 DDRAW_HANDLE_SURFACE,
278 struct ddraw_handle_entry
280 void *object;
281 enum ddraw_handle_type type;
284 struct ddraw_handle_table
286 struct ddraw_handle_entry *entries;
287 struct ddraw_handle_entry *free_entries;
288 UINT table_size;
289 UINT entry_count;
292 BOOL ddraw_handle_table_init(struct ddraw_handle_table *t, UINT initial_size) DECLSPEC_HIDDEN;
293 void ddraw_handle_table_destroy(struct ddraw_handle_table *t) DECLSPEC_HIDDEN;
294 DWORD ddraw_allocate_handle(struct ddraw_handle_table *t, void *object, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
295 void *ddraw_free_handle(struct ddraw_handle_table *t, DWORD handle, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
296 void *ddraw_get_object(struct ddraw_handle_table *t, DWORD handle, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
298 struct d3d_device
300 /* IUnknown */
301 IDirect3DDevice7 IDirect3DDevice7_iface;
302 IDirect3DDevice3 IDirect3DDevice3_iface;
303 IDirect3DDevice2 IDirect3DDevice2_iface;
304 IDirect3DDevice IDirect3DDevice_iface;
305 IUnknown IUnknown_inner;
306 LONG ref;
307 UINT version;
309 IUnknown *outer_unknown;
310 struct wined3d_device *wined3d_device;
311 struct ddraw *ddraw;
312 IUnknown *rt_iface;
314 struct wined3d_buffer *index_buffer;
315 UINT index_buffer_size;
316 UINT index_buffer_pos;
318 struct wined3d_buffer *vertex_buffer;
319 UINT vertex_buffer_size;
320 UINT vertex_buffer_pos;
322 /* Viewport management */
323 struct list viewport_list;
324 struct d3d_viewport *current_viewport;
325 D3DVIEWPORT7 active_viewport;
327 /* Required to keep track which of two available texture blending modes in d3ddevice3 is used */
328 BOOL legacyTextureBlending;
330 D3DMATRIX legacy_projection;
331 D3DMATRIX legacy_clipspace;
333 /* Light state */
334 DWORD material;
336 /* Rendering functions to wrap D3D(1-3) to D3D7 */
337 D3DPRIMITIVETYPE primitive_type;
338 DWORD vertex_type;
339 DWORD render_flags;
340 DWORD nb_vertices;
341 BYTE *sysmem_vertex_buffer;
342 DWORD vertex_size;
343 DWORD buffer_size;
345 /* Handle management */
346 struct ddraw_handle_table handle_table;
347 D3DMATRIXHANDLE world, proj, view;
349 struct wined3d_vec4 user_clip_planes[D3DMAXUSERCLIPPLANES];
352 HRESULT d3d_device_create(struct ddraw *ddraw, struct ddraw_surface *target, IUnknown *rt_iface,
353 UINT version, struct d3d_device **device, IUnknown *outer_unknown) DECLSPEC_HIDDEN;
354 enum wined3d_depth_buffer_type d3d_device_update_depth_stencil(struct d3d_device *device) DECLSPEC_HIDDEN;
356 /* The IID */
357 extern const GUID IID_D3DDEVICE_WineD3D DECLSPEC_HIDDEN;
359 static inline struct d3d_device *impl_from_IDirect3DDevice(IDirect3DDevice *iface)
361 return CONTAINING_RECORD(iface, struct d3d_device, IDirect3DDevice_iface);
364 static inline struct d3d_device *impl_from_IDirect3DDevice2(IDirect3DDevice2 *iface)
366 return CONTAINING_RECORD(iface, struct d3d_device, IDirect3DDevice2_iface);
369 static inline struct d3d_device *impl_from_IDirect3DDevice3(IDirect3DDevice3 *iface)
371 return CONTAINING_RECORD(iface, struct d3d_device, IDirect3DDevice3_iface);
374 static inline struct d3d_device *impl_from_IDirect3DDevice7(IDirect3DDevice7 *iface)
376 return CONTAINING_RECORD(iface, struct d3d_device, IDirect3DDevice7_iface);
379 struct d3d_device *unsafe_impl_from_IDirect3DDevice(IDirect3DDevice *iface) DECLSPEC_HIDDEN;
380 struct d3d_device *unsafe_impl_from_IDirect3DDevice2(IDirect3DDevice2 *iface) DECLSPEC_HIDDEN;
381 struct d3d_device *unsafe_impl_from_IDirect3DDevice3(IDirect3DDevice3 *iface) DECLSPEC_HIDDEN;
382 struct d3d_device *unsafe_impl_from_IDirect3DDevice7(IDirect3DDevice7 *iface) DECLSPEC_HIDDEN;
384 struct ddraw_clipper
386 IDirectDrawClipper IDirectDrawClipper_iface;
387 LONG ref;
388 HWND window;
389 HRGN region;
390 BOOL initialized;
393 HRESULT ddraw_clipper_init(struct ddraw_clipper *clipper) DECLSPEC_HIDDEN;
394 struct ddraw_clipper *unsafe_impl_from_IDirectDrawClipper(IDirectDrawClipper *iface) DECLSPEC_HIDDEN;
396 /*****************************************************************************
397 * IDirectDrawPalette implementation structure
398 *****************************************************************************/
399 struct ddraw_palette
401 /* IUnknown fields */
402 IDirectDrawPalette IDirectDrawPalette_iface;
403 LONG ref;
405 struct wined3d_palette *wined3d_palette;
406 struct ddraw *ddraw;
407 IUnknown *ifaceToRelease;
408 DWORD flags;
411 static inline struct ddraw_palette *impl_from_IDirectDrawPalette(IDirectDrawPalette *iface)
413 return CONTAINING_RECORD(iface, struct ddraw_palette, IDirectDrawPalette_iface);
416 struct ddraw_palette *unsafe_impl_from_IDirectDrawPalette(IDirectDrawPalette *iface) DECLSPEC_HIDDEN;
418 HRESULT ddraw_palette_init(struct ddraw_palette *palette,
419 struct ddraw *ddraw, DWORD flags, PALETTEENTRY *entries) DECLSPEC_HIDDEN;
421 /* Helper structures */
422 struct object_creation_info
424 const CLSID *clsid;
425 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, REFIID riid,
426 void **ppObj);
429 /******************************************************************************
430 * IDirect3DLight implementation structure - Wraps to D3D7
431 ******************************************************************************/
432 struct d3d_light
434 IDirect3DLight IDirect3DLight_iface;
435 LONG ref;
437 /* IDirect3DLight fields */
438 struct ddraw *ddraw;
440 /* If this light is active for one viewport, put the viewport here */
441 struct d3d_viewport *active_viewport;
443 D3DLIGHT2 light;
444 D3DLIGHT7 light7;
446 DWORD dwLightIndex;
448 struct list entry;
451 /* Helper functions */
452 void light_activate(struct d3d_light *light) DECLSPEC_HIDDEN;
453 void light_deactivate(struct d3d_light *light) DECLSPEC_HIDDEN;
454 void d3d_light_init(struct d3d_light *light, struct ddraw *ddraw) DECLSPEC_HIDDEN;
455 struct d3d_light *unsafe_impl_from_IDirect3DLight(IDirect3DLight *iface) DECLSPEC_HIDDEN;
457 /******************************************************************************
458 * IDirect3DMaterial implementation structure - Wraps to D3D7
459 ******************************************************************************/
460 struct d3d_material
462 IDirect3DMaterial3 IDirect3DMaterial3_iface;
463 IDirect3DMaterial2 IDirect3DMaterial2_iface;
464 IDirect3DMaterial IDirect3DMaterial_iface;
465 LONG ref;
467 /* IDirect3DMaterial2 fields */
468 struct ddraw *ddraw;
469 struct d3d_device *active_device;
471 D3DMATERIAL mat;
472 DWORD Handle;
475 /* Helper functions */
476 void material_activate(struct d3d_material *material) DECLSPEC_HIDDEN;
477 struct d3d_material *d3d_material_create(struct ddraw *ddraw) DECLSPEC_HIDDEN;
479 /*****************************************************************************
480 * IDirect3DViewport - Wraps to D3D7
481 *****************************************************************************/
482 struct d3d_viewport
484 IDirect3DViewport3 IDirect3DViewport3_iface;
485 LONG ref;
487 /* IDirect3DViewport fields */
488 struct ddraw *ddraw;
490 /* If this viewport is active for one device, put the device here */
491 struct d3d_device *active_device;
493 DWORD num_lights;
494 DWORD map_lights;
496 int use_vp2;
498 union
500 D3DVIEWPORT vp1;
501 D3DVIEWPORT2 vp2;
502 } viewports;
504 struct list entry;
505 struct list light_list;
506 struct d3d_material *background;
509 struct d3d_viewport *unsafe_impl_from_IDirect3DViewport3(IDirect3DViewport3 *iface) DECLSPEC_HIDDEN;
510 struct d3d_viewport *unsafe_impl_from_IDirect3DViewport2(IDirect3DViewport2 *iface) DECLSPEC_HIDDEN;
511 struct d3d_viewport *unsafe_impl_from_IDirect3DViewport(IDirect3DViewport *iface) DECLSPEC_HIDDEN;
513 /* Helper functions */
514 void viewport_activate(struct d3d_viewport *viewport, BOOL ignore_lights) DECLSPEC_HIDDEN;
515 void d3d_viewport_init(struct d3d_viewport *viewport, struct ddraw *ddraw) DECLSPEC_HIDDEN;
517 /*****************************************************************************
518 * IDirect3DExecuteBuffer - Wraps to D3D7
519 *****************************************************************************/
520 struct d3d_execute_buffer
522 IDirect3DExecuteBuffer IDirect3DExecuteBuffer_iface;
523 LONG ref;
524 /* IDirect3DExecuteBuffer fields */
525 struct ddraw *ddraw;
526 struct d3d_device *d3ddev;
528 D3DEXECUTEBUFFERDESC desc;
529 D3DEXECUTEDATA data;
531 /* This buffer will store the transformed vertices */
532 unsigned int index_size, index_pos;
533 unsigned int vertex_size, src_vertex_pos;
534 struct wined3d_buffer *src_vertex_buffer, *dst_vertex_buffer, *index_buffer;
536 /* This flags is set to TRUE if we allocated ourselves the
537 * data buffer
539 BOOL need_free;
542 HRESULT d3d_execute_buffer_init(struct d3d_execute_buffer *execute_buffer,
543 struct d3d_device *device, D3DEXECUTEBUFFERDESC *desc) DECLSPEC_HIDDEN;
544 struct d3d_execute_buffer *unsafe_impl_from_IDirect3DExecuteBuffer(IDirect3DExecuteBuffer *iface) DECLSPEC_HIDDEN;
546 /* The execute function */
547 HRESULT d3d_execute_buffer_execute(struct d3d_execute_buffer *execute_buffer,
548 struct d3d_device *device, struct d3d_viewport *viewport) DECLSPEC_HIDDEN;
550 /*****************************************************************************
551 * IDirect3DVertexBuffer
552 *****************************************************************************/
553 struct d3d_vertex_buffer
555 IDirect3DVertexBuffer7 IDirect3DVertexBuffer7_iface;
556 LONG ref;
557 unsigned int version;
559 /*** WineD3D and ddraw links ***/
560 struct wined3d_buffer *wined3d_buffer;
561 struct wined3d_vertex_declaration *wined3d_declaration;
562 struct ddraw *ddraw;
564 /*** Storage for D3D7 specific things ***/
565 DWORD Caps;
566 DWORD fvf;
567 DWORD size;
568 BOOL dynamic;
571 HRESULT d3d_vertex_buffer_create(struct d3d_vertex_buffer **buffer, struct ddraw *ddraw,
572 D3DVERTEXBUFFERDESC *desc) DECLSPEC_HIDDEN;
573 struct d3d_vertex_buffer *unsafe_impl_from_IDirect3DVertexBuffer(IDirect3DVertexBuffer *iface) DECLSPEC_HIDDEN;
574 struct d3d_vertex_buffer *unsafe_impl_from_IDirect3DVertexBuffer7(IDirect3DVertexBuffer7 *iface) DECLSPEC_HIDDEN;
576 /*****************************************************************************
577 * Helper functions from utils.c
578 *****************************************************************************/
580 #define GET_TEXCOUNT_FROM_FVF(d3dvtVertexType) \
581 (((d3dvtVertexType) & D3DFVF_TEXCOUNT_MASK) >> D3DFVF_TEXCOUNT_SHIFT)
583 #define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
584 (((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)
586 void ddrawformat_from_wined3dformat(DDPIXELFORMAT *ddraw_format,
587 enum wined3d_format_id wined3d_format) DECLSPEC_HIDDEN;
588 BOOL wined3d_colour_from_ddraw_colour(const DDPIXELFORMAT *pf, const struct ddraw_palette *palette,
589 DWORD colour, struct wined3d_color *wined3d_colour) DECLSPEC_HIDDEN;
590 enum wined3d_format_id wined3dformat_from_ddrawformat(const DDPIXELFORMAT *format) DECLSPEC_HIDDEN;
591 unsigned int wined3dmapflags_from_ddrawmapflags(unsigned int flags) DECLSPEC_HIDDEN;
592 void DDRAW_dump_surface_desc(const DDSURFACEDESC2 *lpddsd) DECLSPEC_HIDDEN;
593 void dump_D3DMATRIX(const D3DMATRIX *mat) DECLSPEC_HIDDEN;
594 void DDRAW_dump_DDCAPS(const DDCAPS *lpcaps) DECLSPEC_HIDDEN;
595 DWORD get_flexible_vertex_size(DWORD d3dvtVertexType) DECLSPEC_HIDDEN;
596 void DDRAW_dump_DDSCAPS2(const DDSCAPS2 *in) DECLSPEC_HIDDEN;
597 void DDRAW_dump_cooperativelevel(DWORD cooplevel) DECLSPEC_HIDDEN;
598 void DDSD_to_DDSD2(const DDSURFACEDESC *in, DDSURFACEDESC2 *out) DECLSPEC_HIDDEN;
599 void DDSD2_to_DDSD(const DDSURFACEDESC2 *in, DDSURFACEDESC *out) DECLSPEC_HIDDEN;
601 void multiply_matrix(D3DMATRIX *dst, const D3DMATRIX *src1, const D3DMATRIX *src2) DECLSPEC_HIDDEN;
603 static inline BOOL format_is_compressed(const DDPIXELFORMAT *format)
605 return (format->dwFlags & DDPF_FOURCC) && (format->dwFourCC == WINED3DFMT_DXT1
606 || format->dwFourCC == WINED3DFMT_DXT2 || format->dwFourCC == WINED3DFMT_DXT3
607 || format->dwFourCC == WINED3DFMT_DXT4 || format->dwFourCC == WINED3DFMT_DXT5);
610 static inline BOOL format_is_paletteindexed(const DDPIXELFORMAT *fmt)
612 DWORD flags = DDPF_PALETTEINDEXED1 | DDPF_PALETTEINDEXED2 | DDPF_PALETTEINDEXED4
613 | DDPF_PALETTEINDEXED8 | DDPF_PALETTEINDEXEDTO8;
614 return !!(fmt->dwFlags & flags);
617 /* Used for generic dumping */
618 struct flag_info
620 DWORD val;
621 const char *name;
624 #define FE(x) { x, #x }
626 struct member_info
628 DWORD val;
629 const char *name;
630 void (*func)(const void *);
631 ptrdiff_t offset;
634 /* Structure copy */
635 #define ME(x,f,e) { x, #x, (void (*)(const void *))(f), offsetof(STRUCT, e) }
637 #define DD_STRUCT_COPY_BYSIZE_(to,from,to_size,from_size) \
638 do { \
639 DWORD __size = (to)->dwSize; \
640 DWORD __resetsize = min(to_size, sizeof(*to)); \
641 DWORD __copysize = min(__resetsize, from_size); \
642 assert(to != from); \
643 memcpy(to, from, __copysize); \
644 memset((char*)(to) + __copysize, 0, __resetsize - __copysize); \
645 (to)->dwSize = __size; /* restore size */ \
646 } while (0)
648 #define DD_STRUCT_COPY_BYSIZE(to,from) DD_STRUCT_COPY_BYSIZE_(to,from,(to)->dwSize,(from)->dwSize)
650 HRESULT hr_ddraw_from_wined3d(HRESULT hr) DECLSPEC_HIDDEN;
652 #endif