Searched refs:rg (Results 1 - 1 of 1) sorted by relevance

/haiku/src/build/libbe/interface/
H A DBitmap.cpp55 uint8 rg; // 16: R[4:0],G[5:3] member in struct:rgb16_pixel
60 uint8 rg; // 16: R[4:0],G[5:3] member in struct:rgb16_big_pixel
773 // rg: R[4:0],G[5:3]
776 color.red = pixel.rg & 0xf8;
777 color.green = ((pixel.rg & 0x07) << 5) & ((pixel.gb & 0xe0) >> 3);
804 // rg: -[0],R[4:0],G[4:3]
807 color.red = (pixel.rg & 0x7c) << 1;
808 color.green = ((pixel.rg & 0x03) << 6) & ((pixel.gb & 0xe0) >> 2);
1003 // rg: R[4:0],G[5:3]
1006 pixel.rg
[all...]

Completed in 79 milliseconds