libui/windows/draw.hpp

19 lines
473 B
C++

// 5 may 2016
// TODO resolve overlap between this and the other hpp files (some functions leaked into uipriv_windows.hpp)
// 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);