urlmon: Recognize <body> tag in FindMimeFromData function.
[wine/multimedia.git] / dlls / d3d8 / d3d8_private.h
blob09615036bfcd0a5c6fd9fa1d87aa98a691407ed6
1 /*
2 * Direct3D 8 private include file
4 * Copyright 2002-2004 Jason Edmeades
5 * Copyright 2003-2004 Raphael Junqueira
6 * Copyright 2004 Christian Costa
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_D3D8_PRIVATE_H
24 #define __WINE_D3D8_PRIVATE_H
26 #include <assert.h>
27 #include <stdarg.h>
29 #define NONAMELESSUNION
30 #define NONAMELESSSTRUCT
31 #define COBJMACROS
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "wine/debug.h"
36 #include "d3d8.h"
37 #include "wine/wined3d.h"
39 /* CreateVertexShader can return > 0xFFFF */
40 #define VS_HIGHESTFIXEDFXF 0xF0000000
42 /* ===========================================================================
43 Macros
44 =========================================================================== */
45 /* Not nice, but it lets wined3d support different versions of directx */
46 #define WINECAPSTOD3D8CAPS(_pD3D8Caps, _pWineCaps) \
47 _pD3D8Caps->DeviceType = (D3DDEVTYPE) _pWineCaps->DeviceType; \
48 _pD3D8Caps->AdapterOrdinal = _pWineCaps->AdapterOrdinal; \
49 _pD3D8Caps->Caps = _pWineCaps->Caps; \
50 _pD3D8Caps->Caps2 = _pWineCaps->Caps2; \
51 _pD3D8Caps->Caps3 = _pWineCaps->Caps3; \
52 _pD3D8Caps->PresentationIntervals = _pWineCaps->PresentationIntervals; \
53 _pD3D8Caps->CursorCaps = _pWineCaps->CursorCaps; \
54 _pD3D8Caps->DevCaps = _pWineCaps->DevCaps; \
55 _pD3D8Caps->PrimitiveMiscCaps = _pWineCaps->PrimitiveMiscCaps; \
56 _pD3D8Caps->RasterCaps = _pWineCaps->RasterCaps; \
57 _pD3D8Caps->ZCmpCaps = _pWineCaps->ZCmpCaps; \
58 _pD3D8Caps->SrcBlendCaps = _pWineCaps->SrcBlendCaps; \
59 _pD3D8Caps->DestBlendCaps = _pWineCaps->DestBlendCaps; \
60 _pD3D8Caps->AlphaCmpCaps = _pWineCaps->AlphaCmpCaps; \
61 _pD3D8Caps->ShadeCaps = _pWineCaps->ShadeCaps; \
62 _pD3D8Caps->TextureCaps = _pWineCaps->TextureCaps; \
63 _pD3D8Caps->TextureFilterCaps = _pWineCaps->TextureFilterCaps; \
64 _pD3D8Caps->CubeTextureFilterCaps = _pWineCaps->CubeTextureFilterCaps; \
65 _pD3D8Caps->VolumeTextureFilterCaps = _pWineCaps->VolumeTextureFilterCaps; \
66 _pD3D8Caps->TextureAddressCaps = _pWineCaps->TextureAddressCaps; \
67 _pD3D8Caps->VolumeTextureAddressCaps = _pWineCaps->VolumeTextureAddressCaps; \
68 _pD3D8Caps->LineCaps = _pWineCaps->LineCaps; \
69 _pD3D8Caps->MaxTextureWidth = _pWineCaps->MaxTextureWidth; \
70 _pD3D8Caps->MaxTextureHeight = _pWineCaps->MaxTextureHeight; \
71 _pD3D8Caps->MaxVolumeExtent = _pWineCaps->MaxVolumeExtent; \
72 _pD3D8Caps->MaxTextureRepeat = _pWineCaps->MaxTextureRepeat; \
73 _pD3D8Caps->MaxTextureAspectRatio = _pWineCaps->MaxTextureAspectRatio; \
74 _pD3D8Caps->MaxAnisotropy = _pWineCaps->MaxAnisotropy; \
75 _pD3D8Caps->MaxVertexW = _pWineCaps->MaxVertexW; \
76 _pD3D8Caps->GuardBandLeft = _pWineCaps->GuardBandLeft; \
77 _pD3D8Caps->GuardBandTop = _pWineCaps->GuardBandTop; \
78 _pD3D8Caps->GuardBandRight = _pWineCaps->GuardBandRight; \
79 _pD3D8Caps->GuardBandBottom = _pWineCaps->GuardBandBottom; \
80 _pD3D8Caps->ExtentsAdjust = _pWineCaps->ExtentsAdjust; \
81 _pD3D8Caps->StencilCaps = _pWineCaps->StencilCaps; \
82 _pD3D8Caps->FVFCaps = _pWineCaps->FVFCaps; \
83 _pD3D8Caps->TextureOpCaps = _pWineCaps->TextureOpCaps; \
84 _pD3D8Caps->MaxTextureBlendStages = _pWineCaps->MaxTextureBlendStages; \
85 _pD3D8Caps->MaxSimultaneousTextures = _pWineCaps->MaxSimultaneousTextures; \
86 _pD3D8Caps->VertexProcessingCaps = _pWineCaps->VertexProcessingCaps; \
87 _pD3D8Caps->MaxActiveLights = _pWineCaps->MaxActiveLights; \
88 _pD3D8Caps->MaxUserClipPlanes = _pWineCaps->MaxUserClipPlanes; \
89 _pD3D8Caps->MaxVertexBlendMatrices = _pWineCaps->MaxVertexBlendMatrices; \
90 _pD3D8Caps->MaxVertexBlendMatrixIndex = _pWineCaps->MaxVertexBlendMatrixIndex; \
91 _pD3D8Caps->MaxPointSize = _pWineCaps->MaxPointSize; \
92 _pD3D8Caps->MaxPrimitiveCount = _pWineCaps->MaxPrimitiveCount; \
93 _pD3D8Caps->MaxVertexIndex = _pWineCaps->MaxVertexIndex; \
94 _pD3D8Caps->MaxStreams = _pWineCaps->MaxStreams; \
95 _pD3D8Caps->MaxStreamStride = _pWineCaps->MaxStreamStride; \
96 _pD3D8Caps->VertexShaderVersion = _pWineCaps->VertexShaderVersion; \
97 _pD3D8Caps->MaxVertexShaderConst = _pWineCaps->MaxVertexShaderConst; \
98 _pD3D8Caps->PixelShaderVersion = _pWineCaps->PixelShaderVersion; \
99 _pD3D8Caps->MaxPixelShaderValue = _pWineCaps->PixelShader1xMaxValue;
101 void fixup_caps(WINED3DCAPS *pWineCaps) DECLSPEC_HIDDEN;
103 struct d3d8
105 IDirect3D8 IDirect3D8_iface;
106 LONG refcount;
107 struct wined3d *wined3d;
110 BOOL d3d8_init(struct d3d8 *d3d8) DECLSPEC_HIDDEN;
112 /*****************************************************************************
113 * IDirect3DDevice8 implementation structure
116 #define D3D8_INITIAL_HANDLE_TABLE_SIZE 64
117 #define D3D8_INVALID_HANDLE ~0U
119 enum d3d8_handle_type
121 D3D8_HANDLE_FREE,
122 D3D8_HANDLE_VS,
123 D3D8_HANDLE_PS,
124 D3D8_HANDLE_SB,
127 struct d3d8_handle_entry
129 void *object;
130 enum d3d8_handle_type type;
133 struct d3d8_handle_table
135 struct d3d8_handle_entry *entries;
136 struct d3d8_handle_entry *free_entries;
137 UINT table_size;
138 UINT entry_count;
141 struct FvfToDecl
143 DWORD fvf;
144 struct d3d8_vertex_declaration *declaration;
147 enum d3d8_device_state
149 D3D8_DEVICE_STATE_OK,
150 D3D8_DEVICE_STATE_LOST,
151 D3D8_DEVICE_STATE_NOT_RESET,
154 struct d3d8_device
156 /* IUnknown fields */
157 IDirect3DDevice8 IDirect3DDevice8_iface;
158 struct wined3d_device_parent device_parent;
159 LONG ref;
160 struct wined3d_device *wined3d_device;
161 IDirect3D8 *d3d_parent;
162 struct d3d8_handle_table handle_table;
164 /* FVF management */
165 struct FvfToDecl *decls;
166 UINT numConvertedDecls, declArraySize;
168 /* User data draws */
169 struct wined3d_buffer *vertex_buffer;
170 UINT vertex_buffer_size;
171 UINT vertex_buffer_pos;
172 struct wined3d_buffer *index_buffer;
173 UINT index_buffer_size;
174 UINT index_buffer_pos;
176 LONG device_state;
177 /* Avoids recursion with nested ReleaseRef to 0 */
178 BOOL inDestruction;
181 HRESULT device_init(struct d3d8_device *device, struct d3d8 *parent, struct wined3d *wined3d, UINT adapter,
182 D3DDEVTYPE device_type, HWND focus_window, DWORD flags, D3DPRESENT_PARAMETERS *parameters) DECLSPEC_HIDDEN;
184 static inline struct d3d8_device *impl_from_IDirect3DDevice8(IDirect3DDevice8 *iface)
186 return CONTAINING_RECORD(iface, struct d3d8_device, IDirect3DDevice8_iface);
189 struct d3d8_resource
191 LONG refcount;
192 struct wined3d_private_store private_store;
195 void d3d8_resource_cleanup(struct d3d8_resource *resource) DECLSPEC_HIDDEN;
196 HRESULT d3d8_resource_free_private_data(struct d3d8_resource *resource, const GUID *guid) DECLSPEC_HIDDEN;
197 HRESULT d3d8_resource_get_private_data(struct d3d8_resource *resource, const GUID *guid,
198 void *data, DWORD *data_size) DECLSPEC_HIDDEN;
199 void d3d8_resource_init(struct d3d8_resource *resource) DECLSPEC_HIDDEN;
200 HRESULT d3d8_resource_set_private_data(struct d3d8_resource *resource, const GUID *guid,
201 const void *data, DWORD data_size, DWORD flags) DECLSPEC_HIDDEN;
203 struct d3d8_volume
205 IDirect3DVolume8 IDirect3DVolume8_iface;
206 struct d3d8_resource resource;
207 struct wined3d_volume *wined3d_volume;
208 IUnknown *container;
209 IUnknown *forwardReference;
212 void volume_init(struct d3d8_volume *volume, struct wined3d_volume *wined3d_volume,
213 const struct wined3d_parent_ops **parent_ops) DECLSPEC_HIDDEN;
215 struct d3d8_swapchain
217 IDirect3DSwapChain8 IDirect3DSwapChain8_iface;
218 LONG refcount;
219 struct wined3d_swapchain *wined3d_swapchain;
220 IDirect3DDevice8 *parent_device;
223 HRESULT d3d8_swapchain_create(struct d3d8_device *device, struct wined3d_swapchain_desc *desc,
224 struct d3d8_swapchain **swapchain) DECLSPEC_HIDDEN;
226 struct d3d8_surface
228 IDirect3DSurface8 IDirect3DSurface8_iface;
229 struct d3d8_resource resource;
230 struct wined3d_surface *wined3d_surface;
231 IDirect3DDevice8 *parent_device;
233 /* The surface container */
234 IUnknown *container;
236 /* If set forward refcounting to this object */
237 IUnknown *forwardReference;
240 void surface_init(struct d3d8_surface *surface, struct wined3d_surface *wined3d_surface,
241 struct d3d8_device *device, const struct wined3d_parent_ops **parent_ops) DECLSPEC_HIDDEN;
242 struct d3d8_surface *unsafe_impl_from_IDirect3DSurface8(IDirect3DSurface8 *iface) DECLSPEC_HIDDEN;
244 struct d3d8_vertexbuffer
246 IDirect3DVertexBuffer8 IDirect3DVertexBuffer8_iface;
247 struct d3d8_resource resource;
248 struct wined3d_buffer *wined3d_buffer;
249 IDirect3DDevice8 *parent_device;
250 DWORD fvf;
253 HRESULT vertexbuffer_init(struct d3d8_vertexbuffer *buffer, struct d3d8_device *device,
254 UINT size, DWORD usage, DWORD fvf, D3DPOOL pool) DECLSPEC_HIDDEN;
255 struct d3d8_vertexbuffer *unsafe_impl_from_IDirect3DVertexBuffer8(IDirect3DVertexBuffer8 *iface) DECLSPEC_HIDDEN;
257 struct d3d8_indexbuffer
259 IDirect3DIndexBuffer8 IDirect3DIndexBuffer8_iface;
260 struct d3d8_resource resource;
261 struct wined3d_buffer *wined3d_buffer;
262 IDirect3DDevice8 *parent_device;
263 enum wined3d_format_id format;
266 HRESULT indexbuffer_init(struct d3d8_indexbuffer *buffer, struct d3d8_device *device,
267 UINT size, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
268 struct d3d8_indexbuffer *unsafe_impl_from_IDirect3DIndexBuffer8(IDirect3DIndexBuffer8 *iface) DECLSPEC_HIDDEN;
270 struct d3d8_texture
272 IDirect3DBaseTexture8 IDirect3DBaseTexture8_iface;
273 struct d3d8_resource resource;
274 struct wined3d_texture *wined3d_texture;
275 IDirect3DDevice8 *parent_device;
278 HRESULT cubetexture_init(struct d3d8_texture *texture, struct d3d8_device *device,
279 UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
280 HRESULT texture_init(struct d3d8_texture *texture, struct d3d8_device *device,
281 UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
282 HRESULT volumetexture_init(struct d3d8_texture *texture, struct d3d8_device *device,
283 UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
284 struct d3d8_texture *unsafe_impl_from_IDirect3DBaseTexture8(IDirect3DBaseTexture8 *iface) DECLSPEC_HIDDEN;
286 struct d3d8_vertex_declaration
288 DWORD *elements;
289 DWORD elements_size; /* Size of elements, in bytes */
290 struct wined3d_vertex_declaration *wined3d_vertex_declaration;
291 DWORD shader_handle;
294 void d3d8_vertex_declaration_destroy(struct d3d8_vertex_declaration *declaration) DECLSPEC_HIDDEN;
295 HRESULT d3d8_vertex_declaration_init(struct d3d8_vertex_declaration *declaration,
296 struct d3d8_device *device, const DWORD *elements, DWORD shader_handle) DECLSPEC_HIDDEN;
297 HRESULT d3d8_vertex_declaration_init_fvf(struct d3d8_vertex_declaration *declaration,
298 struct d3d8_device *device, DWORD fvf) DECLSPEC_HIDDEN;
300 struct d3d8_vertex_shader
302 struct d3d8_vertex_declaration *vertex_declaration;
303 struct wined3d_shader *wined3d_shader;
306 void d3d8_vertex_shader_destroy(struct d3d8_vertex_shader *shader) DECLSPEC_HIDDEN;
307 HRESULT d3d8_vertex_shader_init(struct d3d8_vertex_shader *shader, struct d3d8_device *device,
308 const DWORD *declaration, const DWORD *byte_code, DWORD shader_handle, DWORD usage) DECLSPEC_HIDDEN;
310 #define D3D8_MAX_VERTEX_SHADER_CONSTANTF 256
312 struct d3d8_pixel_shader
314 DWORD handle;
315 struct wined3d_shader *wined3d_shader;
318 void d3d8_pixel_shader_destroy(struct d3d8_pixel_shader *shader) DECLSPEC_HIDDEN;
319 HRESULT d3d8_pixel_shader_init(struct d3d8_pixel_shader *shader, struct d3d8_device *device,
320 const DWORD *byte_code, DWORD shader_handle) DECLSPEC_HIDDEN;
322 D3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
323 enum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format) DECLSPEC_HIDDEN;
324 void load_local_constants(const DWORD *d3d8_elements, struct wined3d_shader *wined3d_vertex_shader) DECLSPEC_HIDDEN;
325 size_t parse_token(const DWORD *pToken) DECLSPEC_HIDDEN;
327 #endif /* __WINE_D3DX8_PRIVATE_H */