aboutsummaryrefslogtreecommitdiff
path: root/src/libui_sdl/libui/windows/draw.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libui_sdl/libui/windows/draw.hpp')
-rw-r--r--src/libui_sdl/libui/windows/draw.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/libui_sdl/libui/windows/draw.hpp b/src/libui_sdl/libui/windows/draw.hpp
deleted file mode 100644
index 992d050..0000000
--- a/src/libui_sdl/libui/windows/draw.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// 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;
-};
-
-struct uiDrawBitmap {
- int Width;
- int Height;
- int Stride;
-
- ID2D1Bitmap* bmp;
-};
-
-// drawpath.cpp
-extern ID2D1PathGeometry *pathGeometry(uiDrawPath *p);
-
-// drawmatrix.cpp
-extern void m2d(uiDrawMatrix *m, D2D1_MATRIX_3X2_F *d);