From: Robert Bragg Date: Tue, 24 Feb 2009 11:33:58 +0000 (+0000) Subject: [cogl-matrix] Adds padding to CoglMatrix X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a218a64e2730e55953deedefbaa6f62ebbf5c4a;p=profile%2Fivi%2Fclutter.git [cogl-matrix] Adds padding to CoglMatrix This adds enough padding to allow us to potentially add a cache of the inverse matrix in the future and private flags to annotate matrices. --- diff --git a/clutter/cogl/cogl-matrix.h b/clutter/cogl/cogl-matrix.h index 95ec92f..2c8003b 100644 --- a/clutter/cogl/cogl-matrix.h +++ b/clutter/cogl/cogl-matrix.h @@ -65,6 +65,10 @@ typedef struct _CoglMatrix { /* Note: we may want to extend this later with private flags * and a cache of the inverse transform matrix. */ + float _padding0[16]; + gulong _padding1; + gulong _padding2; + gulong _padding3; } CoglMatrix; /**