blob: 0490331889be699b07be78a665c6f84c1be04e78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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;
};
};
|