d2d1: Implement d2d_d3d_render_target_GetTransform().
[wine.git] / dlls / d2d1 / d2d1_private.h
blob001c986344ff7d8c64d0f34419a856a4c43f1a3d
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 #define COBJMACROS
25 #include "d2d1.h"
27 struct d2d_d3d_render_target
29 ID2D1RenderTarget ID2D1RenderTarget_iface;
30 LONG refcount;
32 D2D1_MATRIX_3X2_F transform;
35 void d2d_d3d_render_target_init(struct d2d_d3d_render_target *render_target, ID2D1Factory *factory,
36 IDXGISurface *surface, const D2D1_RENDER_TARGET_PROPERTIES *desc) DECLSPEC_HIDDEN;
38 struct d2d_gradient
40 ID2D1GradientStopCollection ID2D1GradientStopCollection_iface;
41 LONG refcount;
44 void d2d_gradient_init(struct d2d_gradient *gradient, ID2D1RenderTarget *render_target,
45 const D2D1_GRADIENT_STOP *stops, UINT32 stop_count, D2D1_GAMMA gamma,
46 D2D1_EXTEND_MODE extend_mode) DECLSPEC_HIDDEN;
48 struct d2d_brush
50 ID2D1Brush ID2D1Brush_iface;
51 LONG refcount;
54 void d2d_solid_color_brush_init(struct d2d_brush *brush, ID2D1RenderTarget *render_target,
55 const D2D1_COLOR_F *color, const D2D1_BRUSH_PROPERTIES *desc) DECLSPEC_HIDDEN;
56 void d2d_linear_gradient_brush_init(struct d2d_brush *brush, ID2D1RenderTarget *render_target,
57 const D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES *gradient_brush_desc, const D2D1_BRUSH_PROPERTIES *brush_desc,
58 ID2D1GradientStopCollection *gradient) DECLSPEC_HIDDEN;
60 struct d2d_stroke_style
62 ID2D1StrokeStyle ID2D1StrokeStyle_iface;
63 LONG refcount;
66 void d2d_stroke_style_init(struct d2d_stroke_style *style, ID2D1Factory *factory,
67 const D2D1_STROKE_STYLE_PROPERTIES *desc, const float *dashes, UINT32 dash_count) DECLSPEC_HIDDEN;
69 #endif /* __WINE_D2D1_PRIVATE_H */