| 828 | } |
| 829 | |
| 830 | void FreeLargeBitmap(tLargeBitmap *bmp) { |
| 831 | chunked_bitmap chunk; |
| 832 | |
| 833 | chunk.w = bmp->bmps_w; |
| 834 | chunk.h = bmp->bmps_h; |
| 835 | chunk.bm_array = bmp->bm_array; |
| 836 | bm_DestroyChunkedBitmap(&chunk); |
| 837 | } |
| 838 | |
| 839 | void DrawLargeBitmap(tLargeBitmap *bmp, int x, int y, float alpha) { |
| 840 | chunked_bitmap chunk; |
no test coverage detected