blob: b015791fe9490be8bcbf9c173f3d69439ea0409d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 5 may 2016
// draw.cpp
extern ID2D1Factory *d2dfactory;
struct uiDrawContext {
ID2D1RenderTarget *rt;
// TODO find out how this works
std::vector<struct drawState> *states;
ID2D1PathGeometry *currentClip;
};
// drawpath.cpp
extern ID2D1PathGeometry *pathGeometry(uiDrawPath *p);
// drawmatrix.cpp
extern void m2d(uiDrawMatrix *m, D2D1_MATRIX_3X2_F *d);
|