| 34 | void TestBitmap::unlockBytes() {} |
| 35 | |
| 36 | Color TestBitmap::getPixel(int x, int y) const { |
| 37 | return *getPixelPtr(x, y); |
| 38 | } |
| 39 | |
| 40 | void TestBitmap::setPixel(int x, int y, Color pixel) { |
| 41 | *getPixelPtr(x, y) = pixel; |
no outgoing calls
no test coverage detected