1
0
Fork 0

[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.
This commit is contained in:
Robert Bragg 2009-02-24 11:33:58 +00:00
parent b39223d8cb
commit 0a218a64e2

View file

@ -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;
/**