From 6e10d847ef2be03eaaa72666058fdf826e6039c1 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 6 Feb 2012 12:50:44 +0900 Subject: [PATCH] Make the qpic_t struct consistent with the internal layout. Now that the renderer ruamoko builtins use handles, there's no need to hide data, and it's safer anyway. --- ruamoko/include/draw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ruamoko/include/draw.h b/ruamoko/include/draw.h index 7b626a1ca..55d2c25eb 100644 --- a/ruamoko/include/draw.h +++ b/ruamoko/include/draw.h @@ -6,6 +6,7 @@ struct _qpic_t { int width; int height; + int handle; }; typedef struct _qpic_t *qpic_t;