blob: 0490331889be699b07be78a665c6f84c1be04e78 [file] [log] [blame]
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
union pixel {
unsigned int rgba;
struct {
unsigned char r;
unsigned char g;
unsigned char b;
unsigned char a;
};
};