| 557 | } |
| 558 | |
| 559 | void* Bitmap::pixels() { |
| 560 | if (!bitmap) { |
| 561 | return nullptr; |
| 562 | } |
| 563 | |
| 564 | return (void*) pixman_image_get_data(bitmap.get()); |
| 565 | } |
| 566 | void const* Bitmap::pixels() const { |
| 567 | return (void const*) pixman_image_get_data(bitmap.get()); |
| 568 | } |
no test coverage detected