| 47 | } |
| 48 | |
| 49 | void* BitmapBuffer::lockPixels() { |
| 50 | return hardwareBuffer != nullptr ? tgfx::HardwareBufferLock(hardwareBuffer) : pixels; |
| 51 | } |
| 52 | |
| 53 | void BitmapBuffer::unlockPixels() { |
| 54 | if (hardwareBuffer != nullptr) { |
no outgoing calls
no test coverage detected