commit 4bd0ab7
Michael Forney
·
2013-07-25 07:53:44 +0000 UTC
parent fae91de
Move private interface field to bottom of wld_drawable This way, if I decide to hide it internally, I don't break ABI.
1 files changed,
+2,
-1
M
wld.h
M
wld.h
+2,
-1
1@@ -114,8 +114,9 @@ static inline void wld_font_text_extents_utf8(struct wld_font * font,
2 /* Drawables */
3 struct wld_drawable
4 {
5- const struct wld_draw_interface * interface;
6 uint32_t width, height;
7+
8+ const struct wld_draw_interface * interface;
9 };
10
11 /**