| 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) |
| 84 | { _SetRGB(_PbXY(b, x, y), RgbR(kv), RgbG(kv), RgbB(kv)); } |
| 85 | KV BmpGetXY(CONST Bitmap *b, int x, int y) |
no outgoing calls
no test coverage detected