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.
This commit is contained in:
Bill Currie 2012-02-06 12:50:44 +09:00
parent 42b87ee80c
commit 6e10d847ef

View file

@ -6,6 +6,7 @@
struct _qpic_t {
int width;
int height;
int handle;
};
typedef struct _qpic_t *qpic_t;