| 837 | } |
| 838 | |
| 839 | void DrawLargeBitmap(tLargeBitmap *bmp, int x, int y, float alpha) { |
| 840 | chunked_bitmap chunk; |
| 841 | |
| 842 | chunk.w = bmp->bmps_w; |
| 843 | chunk.h = bmp->bmps_h; |
| 844 | chunk.bm_array = bmp->bm_array; |
| 845 | rend_DrawChunkedBitmap(&chunk, x, y, alpha * 255); |
| 846 | } |
| 847 | |
| 848 | /////////////////////////////////////////////////////////////////////////////// |
| 849 | // Listbox procedure. |
no test coverage detected