diff options
author | marha <marha@users.sourceforge.net> | 2013-09-25 09:36:22 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-09-25 09:36:22 +0200 |
commit | 14718f10dcda487178690de9a51cc5acdf21e468 (patch) | |
tree | 756b76a52c4382e58e5e552e468d93d453c3ae86 /mesalib/src/mesa/main/compiler.h | |
parent | e4d5a2996e4a03f55bc7d21c493ba1bcbef35aae (diff) | |
download | vcxsrv-14718f10dcda487178690de9a51cc5acdf21e468.tar.gz vcxsrv-14718f10dcda487178690de9a51cc5acdf21e468.tar.bz2 vcxsrv-14718f10dcda487178690de9a51cc5acdf21e468.zip |
fontconfig mesa git update 25 Sep 2013
fontconfig commit 102864d0dba46c99b22c912454c1f58731287405
mesa commit 59157d1c96f33ca56d9aba6cff75145d732dbbab
Diffstat (limited to 'mesalib/src/mesa/main/compiler.h')
-rw-r--r-- | mesalib/src/mesa/main/compiler.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mesalib/src/mesa/main/compiler.h b/mesalib/src/mesa/main/compiler.h index fb7baf84e..0f27d5a66 100644 --- a/mesalib/src/mesa/main/compiler.h +++ b/mesalib/src/mesa/main/compiler.h @@ -270,6 +270,15 @@ static INLINE GLuint CPU_TO_LE32(GLuint x) #define NULL 0 #endif +/* Used to optionally mark structures with misaligned elements or size as + * packed, to trade off performance for space. + */ +#if (__GNUC__ >= 3) +#define PACKED __attribute__((__packed__)) +#else +#define PACKED +#endif + /** * LONGSTRING macro |