ole32: Add more traces to the storage methods.
[wine/multimedia.git] / dlls / d2d1 / d2d1_private.h
blob5fe5620e96eaa93622a5e61de0b164df979f5094
1 /*
2 * Copyright 2014 Henri Verbeet for CodeWeavers
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_D2D1_PRIVATE_H
20 #define __WINE_D2D1_PRIVATE_H
22 #include "wine/debug.h"
24 #include <assert.h>
25 #include <limits.h>
26 #define COBJMACROS
27 #include "d2d1.h"
28 #ifdef D2D1_INIT_GUID
29 #include "initguid.h"
30 #endif
31 #include "dwrite.h"
33 enum d2d_brush_type
35 D2D_BRUSH_TYPE_SOLID,
36 D2D_BRUSH_TYPE_LINEAR,
37 D2D_BRUSH_TYPE_BITMAP,
38 D2D_BRUSH_TYPE_COUNT,
41 enum d2d_shape_type
43 D2D_SHAPE_TYPE_TRIANGLE,
44 D2D_SHAPE_TYPE_BEZIER,
45 D2D_SHAPE_TYPE_COUNT,
48 struct d2d_clip_stack
50 D2D1_RECT_F *stack;
51 unsigned int size;
52 unsigned int count;
55 struct d2d_shape_resources
57 ID3D10InputLayout *il;
58 ID3D10VertexShader *vs;
59 ID3D10PixelShader *ps[D2D_BRUSH_TYPE_COUNT];
62 struct d2d_d3d_render_target
64 ID2D1RenderTarget ID2D1RenderTarget_iface;
65 IDWriteTextRenderer IDWriteTextRenderer_iface;
66 LONG refcount;
68 ID2D1Factory *factory;
69 ID3D10Device *device;
70 ID3D10RenderTargetView *view;
71 ID3D10StateBlock *stateblock;
72 struct d2d_shape_resources shape_resources[D2D_SHAPE_TYPE_COUNT];
73 ID3D10Buffer *ib;
74 unsigned int vb_stride;
75 ID3D10Buffer *vb;
76 ID3D10RasterizerState *rs;
77 ID3D10BlendState *bs;
79 D2D1_DRAWING_STATE_DESCRIPTION drawing_state;
80 IDWriteRenderingParams *text_rendering_params;
82 D2D1_PIXEL_FORMAT format;
83 D2D1_SIZE_U pixel_size;
84 struct d2d_clip_stack clip_stack;
85 float dpi_x;
86 float dpi_y;
89 HRESULT d2d_d3d_render_target_init(struct d2d_d3d_render_target *render_target, ID2D1Factory *factory,
90 IDXGISurface *surface, const D2D1_RENDER_TARGET_PROPERTIES *desc) DECLSPEC_HIDDEN;
92 struct d2d_wic_render_target
94 ID2D1RenderTarget ID2D1RenderTarget_iface;
95 LONG refcount;
97 IDXGISurface *dxgi_surface;
98 ID2D1RenderTarget *dxgi_target;
99 ID3D10Texture2D *readback_texture;
100 IWICBitmap *bitmap;
102 unsigned int width;
103 unsigned int height;
104 unsigned int bpp;
107 HRESULT d2d_wic_render_target_init(struct d2d_wic_render_target *render_target, ID2D1Factory *factory,
108 ID3D10Device1 *device, IWICBitmap *bitmap, const D2D1_RENDER_TARGET_PROPERTIES *desc) DECLSPEC_HIDDEN;
110 struct d2d_gradient
112 ID2D1GradientStopCollection ID2D1GradientStopCollection_iface;
113 LONG refcount;
115 ID2D1Factory *factory;
116 D2D1_GRADIENT_STOP *stops;
117 UINT32 stop_count;
120 HRESULT d2d_gradient_init(struct d2d_gradient *gradient, ID2D1Factory *factory,
121 const D2D1_GRADIENT_STOP *stops, UINT32 stop_count, D2D1_GAMMA gamma,
122 D2D1_EXTEND_MODE extend_mode) DECLSPEC_HIDDEN;
124 struct d2d_brush
126 ID2D1Brush ID2D1Brush_iface;
127 LONG refcount;
129 ID2D1Factory *factory;
130 float opacity;
131 D2D1_MATRIX_3X2_F transform;
133 enum d2d_brush_type type;
134 union
136 struct
138 D2D1_COLOR_F color;
139 } solid;
140 struct
142 struct d2d_bitmap *bitmap;
143 D2D1_EXTEND_MODE extend_mode_x;
144 D2D1_EXTEND_MODE extend_mode_y;
145 D2D1_BITMAP_INTERPOLATION_MODE interpolation_mode;
146 ID3D10SamplerState *sampler_state;
147 } bitmap;
148 } u;
151 void d2d_solid_color_brush_init(struct d2d_brush *brush, ID2D1Factory *factory,
152 const D2D1_COLOR_F *color, const D2D1_BRUSH_PROPERTIES *desc) DECLSPEC_HIDDEN;
153 void d2d_linear_gradient_brush_init(struct d2d_brush *brush, ID2D1Factory *factory,
154 const D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES *gradient_brush_desc, const D2D1_BRUSH_PROPERTIES *brush_desc,
155 ID2D1GradientStopCollection *gradient) DECLSPEC_HIDDEN;
156 void d2d_bitmap_brush_init(struct d2d_brush *brush, ID2D1Factory *factory,
157 ID2D1Bitmap *bitmap, const D2D1_BITMAP_BRUSH_PROPERTIES *bitmap_brush_desc,
158 const D2D1_BRUSH_PROPERTIES *brush_desc) DECLSPEC_HIDDEN;
159 void d2d_brush_bind_resources(struct d2d_brush *brush, struct d2d_d3d_render_target *render_target,
160 enum d2d_shape_type shape_type) DECLSPEC_HIDDEN;
161 HRESULT d2d_brush_get_ps_cb(struct d2d_brush *brush, struct d2d_d3d_render_target *render_target,
162 ID3D10Buffer **ps_cb) DECLSPEC_HIDDEN;
163 struct d2d_brush *unsafe_impl_from_ID2D1Brush(ID2D1Brush *iface) DECLSPEC_HIDDEN;
165 struct d2d_stroke_style
167 ID2D1StrokeStyle ID2D1StrokeStyle_iface;
168 LONG refcount;
170 ID2D1Factory *factory;
173 void d2d_stroke_style_init(struct d2d_stroke_style *style, ID2D1Factory *factory,
174 const D2D1_STROKE_STYLE_PROPERTIES *desc, const float *dashes, UINT32 dash_count) DECLSPEC_HIDDEN;
176 struct d2d_mesh
178 ID2D1Mesh ID2D1Mesh_iface;
179 LONG refcount;
181 ID2D1Factory *factory;
184 void d2d_mesh_init(struct d2d_mesh *mesh, ID2D1Factory *factory) DECLSPEC_HIDDEN;
186 struct d2d_bitmap
188 ID2D1Bitmap ID2D1Bitmap_iface;
189 LONG refcount;
191 ID2D1Factory *factory;
192 ID3D10ShaderResourceView *view;
193 D2D1_SIZE_U pixel_size;
194 D2D1_PIXEL_FORMAT format;
195 float dpi_x;
196 float dpi_y;
199 HRESULT d2d_bitmap_init_memory(struct d2d_bitmap *bitmap, struct d2d_d3d_render_target *render_target,
200 D2D1_SIZE_U size, const void *src_data, UINT32 pitch, const D2D1_BITMAP_PROPERTIES *desc) DECLSPEC_HIDDEN;
201 HRESULT d2d_bitmap_init_shared(struct d2d_bitmap *bitmap, struct d2d_d3d_render_target *render_target,
202 REFIID iid, void *data, const D2D1_BITMAP_PROPERTIES *desc) DECLSPEC_HIDDEN;
203 struct d2d_bitmap *unsafe_impl_from_ID2D1Bitmap(ID2D1Bitmap *iface) DECLSPEC_HIDDEN;
205 struct d2d_state_block
207 ID2D1DrawingStateBlock ID2D1DrawingStateBlock_iface;
208 LONG refcount;
210 ID2D1Factory *factory;
211 D2D1_DRAWING_STATE_DESCRIPTION drawing_state;
212 IDWriteRenderingParams *text_rendering_params;
215 void d2d_state_block_init(struct d2d_state_block *state_block, ID2D1Factory *factory,
216 const D2D1_DRAWING_STATE_DESCRIPTION *desc, IDWriteRenderingParams *text_rendering_params) DECLSPEC_HIDDEN;
217 struct d2d_state_block *unsafe_impl_from_ID2D1DrawingStateBlock(ID2D1DrawingStateBlock *iface) DECLSPEC_HIDDEN;
219 enum d2d_geometry_state
221 D2D_GEOMETRY_STATE_INITIAL = 0,
222 D2D_GEOMETRY_STATE_ERROR,
223 D2D_GEOMETRY_STATE_OPEN,
224 D2D_GEOMETRY_STATE_CLOSED,
225 D2D_GEOMETRY_STATE_FIGURE,
228 struct d2d_bezier
230 struct
232 D2D1_POINT_2F position;
233 struct
235 float u, v, sign;
236 } texcoord;
237 } v[3];
240 struct d2d_face
242 UINT16 v[3];
245 struct d2d_geometry
247 ID2D1Geometry ID2D1Geometry_iface;
248 LONG refcount;
250 ID2D1Factory *factory;
252 D2D_MATRIX_3X2_F transform;
254 D2D1_POINT_2F *vertices;
255 size_t vertex_count;
257 struct d2d_face *faces;
258 size_t faces_size;
259 size_t face_count;
261 struct d2d_bezier *beziers;
262 size_t bezier_count;
264 union
266 struct
268 ID2D1GeometrySink ID2D1GeometrySink_iface;
270 struct d2d_figure *figures;
271 size_t figures_size;
272 size_t figure_count;
274 enum d2d_geometry_state state;
275 D2D1_FILL_MODE fill_mode;
276 UINT32 segment_count;
277 } path;
278 struct
280 D2D1_RECT_F rect;
281 } rectangle;
282 struct
284 ID2D1Geometry *src_geometry;
285 } transformed;
286 } u;
289 void d2d_path_geometry_init(struct d2d_geometry *geometry, ID2D1Factory *factory) DECLSPEC_HIDDEN;
290 HRESULT d2d_rectangle_geometry_init(struct d2d_geometry *geometry,
291 ID2D1Factory *factory, const D2D1_RECT_F *rect) DECLSPEC_HIDDEN;
292 void d2d_transformed_geometry_init(struct d2d_geometry *geometry, ID2D1Factory *factory,
293 ID2D1Geometry *src_geometry, const D2D_MATRIX_3X2_F *transform) DECLSPEC_HIDDEN;
294 struct d2d_geometry *unsafe_impl_from_ID2D1Geometry(ID2D1Geometry *iface) DECLSPEC_HIDDEN;
296 static inline void d2d_matrix_multiply(D2D_MATRIX_3X2_F *a, const D2D_MATRIX_3X2_F *b)
298 D2D_MATRIX_3X2_F tmp = *a;
300 a->_11 = tmp._11 * b->_11 + tmp._12 * b->_21;
301 a->_12 = tmp._11 * b->_12 + tmp._12 * b->_22;
302 a->_21 = tmp._21 * b->_11 + tmp._22 * b->_21;
303 a->_22 = tmp._21 * b->_12 + tmp._22 * b->_22;
304 a->_31 = tmp._31 * b->_11 + tmp._32 * b->_21 + b->_31;
305 a->_32 = tmp._31 * b->_12 + tmp._32 * b->_22 + b->_32;
308 #endif /* __WINE_D2D1_PRIVATE_H */