d3d9: Store wined3d vertex declarations in the fvf lookup table.
[wine/multimedia.git] / dlls / d3d9 / d3d9_private.h
blob485ee12430a15c1f918ac30c346b2d28ae7e9961
1 /*
2 * Direct3D 9 private include file
4 * Copyright 2002-2003 Jason Edmeades
5 * Copyright 2002-2003 Raphael Junqueira
6 * Copyright 2005 Oliver Stieber
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #ifndef __WINE_D3D9_PRIVATE_H
24 #define __WINE_D3D9_PRIVATE_H
26 #include <stdarg.h>
28 #define NONAMELESSUNION
29 #define NONAMELESSSTRUCT
30 #define COBJMACROS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 #include "d3d9.h"
39 #include "wine/wined3d.h"
41 /* ===========================================================================
42 Internal use
43 =========================================================================== */
44 extern HRESULT vdecl_convert_fvf(DWORD FVF, D3DVERTEXELEMENT9 **ppVertexElements) DECLSPEC_HIDDEN;
45 D3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
46 enum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format) DECLSPEC_HIDDEN;
48 /* ===========================================================================
49 Macros
50 =========================================================================== */
51 /* Not nice, but it lets wined3d support different versions of directx */
52 #define WINECAPSTOD3D9CAPS(_pD3D9Caps, _pWineCaps) \
53 _pD3D9Caps->DeviceType = (D3DDEVTYPE) _pWineCaps->DeviceType; \
54 _pD3D9Caps->AdapterOrdinal = _pWineCaps->AdapterOrdinal; \
55 _pD3D9Caps->Caps = _pWineCaps->Caps; \
56 _pD3D9Caps->Caps2 = _pWineCaps->Caps2; \
57 _pD3D9Caps->Caps3 = _pWineCaps->Caps3; \
58 _pD3D9Caps->PresentationIntervals = _pWineCaps->PresentationIntervals; \
59 _pD3D9Caps->CursorCaps = _pWineCaps->CursorCaps; \
60 _pD3D9Caps->DevCaps = _pWineCaps->DevCaps; \
61 _pD3D9Caps->PrimitiveMiscCaps = _pWineCaps->PrimitiveMiscCaps; \
62 _pD3D9Caps->RasterCaps = _pWineCaps->RasterCaps; \
63 _pD3D9Caps->ZCmpCaps = _pWineCaps->ZCmpCaps; \
64 _pD3D9Caps->SrcBlendCaps = _pWineCaps->SrcBlendCaps; \
65 _pD3D9Caps->DestBlendCaps = _pWineCaps->DestBlendCaps; \
66 _pD3D9Caps->AlphaCmpCaps = _pWineCaps->AlphaCmpCaps; \
67 _pD3D9Caps->ShadeCaps = _pWineCaps->ShadeCaps; \
68 _pD3D9Caps->TextureCaps = _pWineCaps->TextureCaps; \
69 _pD3D9Caps->TextureFilterCaps = _pWineCaps->TextureFilterCaps; \
70 _pD3D9Caps->CubeTextureFilterCaps = _pWineCaps->CubeTextureFilterCaps; \
71 _pD3D9Caps->VolumeTextureFilterCaps = _pWineCaps->VolumeTextureFilterCaps; \
72 _pD3D9Caps->TextureAddressCaps = _pWineCaps->TextureAddressCaps; \
73 _pD3D9Caps->VolumeTextureAddressCaps = _pWineCaps->VolumeTextureAddressCaps; \
74 _pD3D9Caps->LineCaps = _pWineCaps->LineCaps; \
75 _pD3D9Caps->MaxTextureWidth = _pWineCaps->MaxTextureWidth; \
76 _pD3D9Caps->MaxTextureHeight = _pWineCaps->MaxTextureHeight; \
77 _pD3D9Caps->MaxVolumeExtent = _pWineCaps->MaxVolumeExtent; \
78 _pD3D9Caps->MaxTextureRepeat = _pWineCaps->MaxTextureRepeat; \
79 _pD3D9Caps->MaxTextureAspectRatio = _pWineCaps->MaxTextureAspectRatio; \
80 _pD3D9Caps->MaxAnisotropy = _pWineCaps->MaxAnisotropy; \
81 _pD3D9Caps->MaxVertexW = _pWineCaps->MaxVertexW; \
82 _pD3D9Caps->GuardBandLeft = _pWineCaps->GuardBandLeft; \
83 _pD3D9Caps->GuardBandTop = _pWineCaps->GuardBandTop; \
84 _pD3D9Caps->GuardBandRight = _pWineCaps->GuardBandRight; \
85 _pD3D9Caps->GuardBandBottom = _pWineCaps->GuardBandBottom; \
86 _pD3D9Caps->ExtentsAdjust = _pWineCaps->ExtentsAdjust; \
87 _pD3D9Caps->StencilCaps = _pWineCaps->StencilCaps; \
88 _pD3D9Caps->FVFCaps = _pWineCaps->FVFCaps; \
89 _pD3D9Caps->TextureOpCaps = _pWineCaps->TextureOpCaps; \
90 _pD3D9Caps->MaxTextureBlendStages = _pWineCaps->MaxTextureBlendStages; \
91 _pD3D9Caps->MaxSimultaneousTextures = _pWineCaps->MaxSimultaneousTextures; \
92 _pD3D9Caps->VertexProcessingCaps = _pWineCaps->VertexProcessingCaps; \
93 _pD3D9Caps->MaxActiveLights = _pWineCaps->MaxActiveLights; \
94 _pD3D9Caps->MaxUserClipPlanes = _pWineCaps->MaxUserClipPlanes; \
95 _pD3D9Caps->MaxVertexBlendMatrices = _pWineCaps->MaxVertexBlendMatrices; \
96 _pD3D9Caps->MaxVertexBlendMatrixIndex = _pWineCaps->MaxVertexBlendMatrixIndex; \
97 _pD3D9Caps->MaxPointSize = _pWineCaps->MaxPointSize; \
98 _pD3D9Caps->MaxPrimitiveCount = _pWineCaps->MaxPrimitiveCount; \
99 _pD3D9Caps->MaxVertexIndex = _pWineCaps->MaxVertexIndex; \
100 _pD3D9Caps->MaxStreams = _pWineCaps->MaxStreams; \
101 _pD3D9Caps->MaxStreamStride = _pWineCaps->MaxStreamStride; \
102 _pD3D9Caps->VertexShaderVersion = _pWineCaps->VertexShaderVersion; \
103 _pD3D9Caps->MaxVertexShaderConst = _pWineCaps->MaxVertexShaderConst; \
104 _pD3D9Caps->PixelShaderVersion = _pWineCaps->PixelShaderVersion; \
105 _pD3D9Caps->PixelShader1xMaxValue = _pWineCaps->PixelShader1xMaxValue; \
106 _pD3D9Caps->DevCaps2 = _pWineCaps->DevCaps2; \
107 _pD3D9Caps->MaxNpatchTessellationLevel = _pWineCaps->MaxNpatchTessellationLevel; \
108 _pD3D9Caps->MasterAdapterOrdinal = _pWineCaps->MasterAdapterOrdinal; \
109 _pD3D9Caps->AdapterOrdinalInGroup = _pWineCaps->AdapterOrdinalInGroup; \
110 _pD3D9Caps->NumberOfAdaptersInGroup = _pWineCaps->NumberOfAdaptersInGroup; \
111 _pD3D9Caps->DeclTypes = _pWineCaps->DeclTypes; \
112 _pD3D9Caps->NumSimultaneousRTs = _pWineCaps->NumSimultaneousRTs; \
113 _pD3D9Caps->StretchRectFilterCaps = _pWineCaps->StretchRectFilterCaps; \
114 _pD3D9Caps->VS20Caps.Caps = _pWineCaps->VS20Caps.caps; \
115 _pD3D9Caps->VS20Caps.DynamicFlowControlDepth = _pWineCaps->VS20Caps.dynamic_flow_control_depth; \
116 _pD3D9Caps->VS20Caps.NumTemps = _pWineCaps->VS20Caps.temp_count; \
117 _pD3D9Caps->VS20Caps.StaticFlowControlDepth = _pWineCaps->VS20Caps.static_flow_control_depth; \
118 _pD3D9Caps->PS20Caps.Caps = _pWineCaps->PS20Caps.caps; \
119 _pD3D9Caps->PS20Caps.DynamicFlowControlDepth = _pWineCaps->PS20Caps.dynamic_flow_control_depth; \
120 _pD3D9Caps->PS20Caps.NumTemps = _pWineCaps->PS20Caps.temp_count; \
121 _pD3D9Caps->PS20Caps.StaticFlowControlDepth = _pWineCaps->PS20Caps.static_flow_control_depth; \
122 _pD3D9Caps->PS20Caps.NumInstructionSlots = _pWineCaps->PS20Caps.instruction_slot_count; \
123 _pD3D9Caps->VertexTextureFilterCaps = _pWineCaps->VertexTextureFilterCaps; \
124 _pD3D9Caps->MaxVShaderInstructionsExecuted = _pWineCaps->MaxVShaderInstructionsExecuted; \
125 _pD3D9Caps->MaxPShaderInstructionsExecuted = _pWineCaps->MaxPShaderInstructionsExecuted; \
126 _pD3D9Caps->MaxVertexShader30InstructionSlots = _pWineCaps->MaxVertexShader30InstructionSlots; \
127 _pD3D9Caps->MaxPixelShader30InstructionSlots = _pWineCaps->MaxPixelShader30InstructionSlots;
129 /* ===========================================================================
130 D3D9 interfaces
131 =========================================================================== */
133 /* ---------- */
134 /* IDirect3D9 */
135 /* ---------- */
137 /*****************************************************************************
138 * Predeclare the interface implementation structures
140 extern const IDirect3D9ExVtbl Direct3D9_Vtbl DECLSPEC_HIDDEN;
142 /*****************************************************************************
143 * IDirect3D implementation structure
145 typedef struct IDirect3D9Impl
147 /* IUnknown fields */
148 IDirect3D9Ex IDirect3D9Ex_iface;
149 LONG ref;
151 struct wined3d *WineD3D;
153 /* Created via Direct3DCreate9Ex? Can QI extended interfaces */
154 BOOL extended;
155 } IDirect3D9Impl;
157 void filter_caps(D3DCAPS9* pCaps) DECLSPEC_HIDDEN;
159 struct fvf_declaration
161 struct wined3d_vertex_declaration *decl;
162 DWORD fvf;
165 /*****************************************************************************
166 * IDirect3DDevice9 implementation structure
168 typedef struct IDirect3DDevice9Impl
170 IDirect3DDevice9Ex IDirect3DDevice9Ex_iface;
171 struct wined3d_device_parent device_parent;
172 LONG ref;
173 struct wined3d_device *wined3d_device;
174 struct IDirect3D9Impl *d3d_parent;
175 /* Avoids recursion with nested ReleaseRef to 0 */
176 BOOL inDestruction;
178 struct fvf_declaration *fvf_decls;
179 UINT fvf_decl_count, fvf_decl_size;
181 BOOL notreset;
182 BOOL in_scene;
183 } IDirect3DDevice9Impl;
185 HRESULT device_init(IDirect3DDevice9Impl *device, IDirect3D9Impl *parent, struct wined3d *wined3d, UINT adapter, D3DDEVTYPE device_type,
186 HWND focus_window, DWORD flags, D3DPRESENT_PARAMETERS *parameters, D3DDISPLAYMODEEX *mode) DECLSPEC_HIDDEN;
188 /*****************************************************************************
189 * IDirect3DVolume9 implementation structure
191 typedef struct IDirect3DVolume9Impl
193 /* IUnknown fields */
194 IDirect3DVolume9 IDirect3DVolume9_iface;
195 LONG ref;
196 struct wined3d_volume *wined3d_volume;
197 IUnknown *container;
198 IUnknown *forwardReference;
199 } IDirect3DVolume9Impl;
201 HRESULT volume_init(IDirect3DVolume9Impl *volume, IDirect3DDevice9Impl *device, UINT width, UINT height,
202 UINT depth, DWORD usage, enum wined3d_format_id format, enum wined3d_pool pool) DECLSPEC_HIDDEN;
204 /* ------------------- */
205 /* IDirect3DSwapChain9 */
206 /* ------------------- */
208 /*****************************************************************************
209 * IDirect3DSwapChain9 implementation structure
211 typedef struct IDirect3DSwapChain9Impl
213 /* IUnknown fields */
214 IDirect3DSwapChain9 IDirect3DSwapChain9_iface;
215 LONG ref;
216 struct wined3d_swapchain *wined3d_swapchain;
217 IDirect3DDevice9Ex *parentDevice;
218 } IDirect3DSwapChain9Impl;
220 HRESULT d3d9_swapchain_create(IDirect3DDevice9Impl *device, D3DPRESENT_PARAMETERS *present_parameters,
221 IDirect3DSwapChain9Impl **swapchain) DECLSPEC_HIDDEN;
223 /* ----------------- */
224 /* IDirect3DSurface9 */
225 /* ----------------- */
227 /*****************************************************************************
228 * IDirect3DSurface9 implementation structure
230 typedef struct IDirect3DSurface9Impl
232 IDirect3DSurface9 IDirect3DSurface9_iface;
233 LONG ref;
234 struct wined3d_surface *wined3d_surface;
235 IDirect3DDevice9Ex *parentDevice;
237 /* The surface container */
238 IUnknown *container;
240 /* If set forward refcounting to this object */
241 IUnknown *forwardReference;
243 BOOL getdc_supported;
244 } IDirect3DSurface9Impl;
246 HRESULT surface_init(IDirect3DSurface9Impl *surface, IDirect3DDevice9Impl *device,
247 UINT width, UINT height, D3DFORMAT format, BOOL lockable, BOOL discard, UINT level,
248 DWORD usage, D3DPOOL pool, D3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality) DECLSPEC_HIDDEN;
249 IDirect3DSurface9Impl *unsafe_impl_from_IDirect3DSurface9(IDirect3DSurface9 *iface) DECLSPEC_HIDDEN;
251 /* ---------------------- */
252 /* IDirect3DVertexBuffer9 */
253 /* ---------------------- */
255 /*****************************************************************************
256 * IDirect3DVertexBuffer9 implementation structure
258 typedef struct IDirect3DVertexBuffer9Impl
260 IDirect3DVertexBuffer9 IDirect3DVertexBuffer9_iface;
261 LONG ref;
262 struct wined3d_buffer *wineD3DVertexBuffer;
263 IDirect3DDevice9Ex *parentDevice;
264 DWORD fvf;
265 } IDirect3DVertexBuffer9Impl;
267 HRESULT vertexbuffer_init(IDirect3DVertexBuffer9Impl *buffer, IDirect3DDevice9Impl *device,
268 UINT size, UINT usage, DWORD fvf, D3DPOOL pool) DECLSPEC_HIDDEN;
269 IDirect3DVertexBuffer9Impl *unsafe_impl_from_IDirect3DVertexBuffer9(IDirect3DVertexBuffer9 *iface) DECLSPEC_HIDDEN;
271 /* --------------------- */
272 /* IDirect3DIndexBuffer9 */
273 /* --------------------- */
275 /*****************************************************************************
276 * IDirect3DIndexBuffer9 implementation structure
278 typedef struct IDirect3DIndexBuffer9Impl
280 IDirect3DIndexBuffer9 IDirect3DIndexBuffer9_iface;
281 LONG ref;
282 struct wined3d_buffer *wineD3DIndexBuffer;
283 IDirect3DDevice9Ex *parentDevice;
284 enum wined3d_format_id format;
285 } IDirect3DIndexBuffer9Impl;
287 HRESULT indexbuffer_init(IDirect3DIndexBuffer9Impl *buffer, IDirect3DDevice9Impl *device,
288 UINT size, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
289 IDirect3DIndexBuffer9Impl *unsafe_impl_from_IDirect3DIndexBuffer9(IDirect3DIndexBuffer9 *iface) DECLSPEC_HIDDEN;
291 /* --------------------- */
292 /* IDirect3DBaseTexture9 */
293 /* --------------------- */
295 /*****************************************************************************
296 * IDirect3DBaseTexture9 implementation structure
298 typedef struct IDirect3DBaseTexture9Impl
300 const IDirect3DBaseTexture9Vtbl *lpVtbl;
301 LONG ref;
302 struct wined3d_texture *wined3d_texture;
303 } IDirect3DBaseTexture9Impl;
305 /* --------------------- */
306 /* IDirect3DCubeTexture9 */
307 /* --------------------- */
309 /*****************************************************************************
310 * IDirect3DCubeTexture9 implementation structure
312 typedef struct IDirect3DCubeTexture9Impl
314 IDirect3DCubeTexture9 IDirect3DCubeTexture9_iface;
315 LONG ref;
316 struct wined3d_texture *wined3d_texture;
317 IDirect3DDevice9Ex *parentDevice;
318 } IDirect3DCubeTexture9Impl;
320 HRESULT cubetexture_init(IDirect3DCubeTexture9Impl *texture, IDirect3DDevice9Impl *device,
321 UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
323 /* ----------------- */
324 /* IDirect3DTexture9 */
325 /* ----------------- */
327 /*****************************************************************************
328 * IDirect3DTexture9 implementation structure
330 typedef struct IDirect3DTexture9Impl
332 IDirect3DTexture9 IDirect3DTexture9_iface;
333 LONG ref;
334 struct wined3d_texture *wined3d_texture;
335 IDirect3DDevice9Ex *parentDevice;
336 } IDirect3DTexture9Impl;
338 HRESULT texture_init(IDirect3DTexture9Impl *texture, IDirect3DDevice9Impl *device,
339 UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
341 /* ----------------------- */
342 /* IDirect3DVolumeTexture9 */
343 /* ----------------------- */
345 /*****************************************************************************
346 * IDirect3DVolumeTexture9 implementation structure
348 typedef struct IDirect3DVolumeTexture9Impl
350 IDirect3DVolumeTexture9 IDirect3DVolumeTexture9_iface;
351 LONG ref;
352 struct wined3d_texture *wined3d_texture;
353 IDirect3DDevice9Ex *parentDevice;
354 } IDirect3DVolumeTexture9Impl;
356 HRESULT volumetexture_init(IDirect3DVolumeTexture9Impl *texture, IDirect3DDevice9Impl *device,
357 UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
359 /* ----------------------- */
360 /* IDirect3DStateBlock9 */
361 /* ----------------------- */
363 /*****************************************************************************
364 * IDirect3DStateBlock9 implementation structure
366 typedef struct IDirect3DStateBlock9Impl {
367 IDirect3DStateBlock9 IDirect3DStateBlock9_iface;
368 LONG ref;
370 /* IDirect3DStateBlock9 fields */
371 struct wined3d_stateblock *wined3d_stateblock;
373 /* Parent reference */
374 IDirect3DDevice9Ex *parentDevice;
375 } IDirect3DStateBlock9Impl;
377 HRESULT stateblock_init(IDirect3DStateBlock9Impl *stateblock, IDirect3DDevice9Impl *device,
378 D3DSTATEBLOCKTYPE type, struct wined3d_stateblock *wined3d_stateblock) DECLSPEC_HIDDEN;
380 /* --------------------------- */
381 /* IDirect3DVertexDeclaration9 */
382 /* --------------------------- */
384 /*****************************************************************************
385 * IDirect3DVertexDeclaration implementation structure
387 typedef struct IDirect3DVertexDeclaration9Impl {
388 /* IUnknown fields */
389 const IDirect3DVertexDeclaration9Vtbl *lpVtbl;
390 LONG ref;
392 D3DVERTEXELEMENT9 *elements;
393 UINT element_count;
395 /* IDirect3DVertexDeclaration9 fields */
396 struct wined3d_vertex_declaration *wineD3DVertexDeclaration;
397 DWORD convFVF;
399 /* Parent reference */
400 LPDIRECT3DDEVICE9EX parentDevice;
401 } IDirect3DVertexDeclaration9Impl;
403 HRESULT d3d9_vertex_declaration_create(IDirect3DDevice9Impl *device,
404 const D3DVERTEXELEMENT9 *elements, IDirect3DVertexDeclaration9Impl **declaration) DECLSPEC_HIDDEN;
406 /* ---------------------- */
407 /* IDirect3DVertexShader9 */
408 /* ---------------------- */
410 /*****************************************************************************
411 * IDirect3DVertexShader implementation structure
413 typedef struct IDirect3DVertexShader9Impl {
414 IDirect3DVertexShader9 IDirect3DVertexShader9_iface;
415 LONG ref;
416 struct wined3d_shader *wined3d_shader;
417 IDirect3DDevice9Ex *parentDevice;
418 } IDirect3DVertexShader9Impl;
420 HRESULT vertexshader_init(IDirect3DVertexShader9Impl *shader,
421 IDirect3DDevice9Impl *device, const DWORD *byte_code) DECLSPEC_HIDDEN;
422 IDirect3DVertexShader9Impl *unsafe_impl_from_IDirect3DVertexShader9(IDirect3DVertexShader9 *iface) DECLSPEC_HIDDEN;
424 #define D3D9_MAX_VERTEX_SHADER_CONSTANTF 256
425 #define D3D9_MAX_SIMULTANEOUS_RENDERTARGETS 4
427 /* --------------------- */
428 /* IDirect3DPixelShader9 */
429 /* --------------------- */
431 /*****************************************************************************
432 * IDirect3DPixelShader implementation structure
434 typedef struct IDirect3DPixelShader9Impl {
435 IDirect3DPixelShader9 IDirect3DPixelShader9_iface;
436 LONG ref;
437 struct wined3d_shader *wined3d_shader;
438 IDirect3DDevice9Ex *parentDevice;
439 } IDirect3DPixelShader9Impl;
441 HRESULT pixelshader_init(IDirect3DPixelShader9Impl *shader,
442 IDirect3DDevice9Impl *device, const DWORD *byte_code) DECLSPEC_HIDDEN;
443 IDirect3DPixelShader9Impl *unsafe_impl_from_IDirect3DPixelShader9(IDirect3DPixelShader9 *iface) DECLSPEC_HIDDEN;
445 /* --------------- */
446 /* IDirect3DQuery9 */
447 /* --------------- */
449 /*****************************************************************************
450 * IDirect3DPixelShader implementation structure
452 typedef struct IDirect3DQuery9Impl {
453 IDirect3DQuery9 IDirect3DQuery9_iface;
454 LONG ref;
456 /* IDirect3DQuery9 fields */
457 struct wined3d_query *wineD3DQuery;
459 /* Parent reference */
460 IDirect3DDevice9Ex *parentDevice;
461 } IDirect3DQuery9Impl;
463 HRESULT query_init(IDirect3DQuery9Impl *query, IDirect3DDevice9Impl *device,
464 D3DQUERYTYPE type) DECLSPEC_HIDDEN;
466 #endif /* __WINE_D3D9_PRIVATE_H */