| 77 | INLINE KV _GetP(CONST byte *pb) |
| 78 | { return (*pb << 16) | (*(pb+1) << 8) | *(pb+2); } |
| 79 | INLINE KV _GetXY(CONST Bitmap *b, int x, int y) |
| 80 | { return _GetP(_PbXY(b, x, y)); } |
| 81 | INLINE void _GetRGB(CONST byte *pb, int *r, int *g, int *b) |
| 82 | { *b = *pb; *g = *(pb+1); *r = *(pb+2); } |
| 83 | void BmpSetXY(Bitmap *b, int x, int y, KV kv) |
no test coverage detected