write a pixel to gui_data (check boundaries)
| 3561 | |
| 3562 | // write a pixel to gui_data (check boundaries) |
| 3563 | static inline void gui_drawpixel_internal(int x, int y, uint32 colour) { |
| 3564 | //gui_prepare(); |
| 3565 | if (gui_check_boundary(x, y)) |
| 3566 | gui_drawpixel_fast(x, y, colour); |
| 3567 | } |
| 3568 | |
| 3569 | // draw a line on gui_data (checks boundaries) |
| 3570 | static void gui_drawline_internal(int x1, int y1, int x2, int y2, bool lastPixel, uint32 colour) { |
no test coverage detected