| 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) |
| 84 | { _SetRGB(_PbXY(b, x, y), RgbR(kv), RgbG(kv), RgbB(kv)); } |
| 85 | KV BmpGetXY(CONST Bitmap *b, int x, int y) |
| 86 | { return _GetXY(b, x, y); } |
| 87 | void SetXY(int x, int y, KI ki) |
no test coverage detected