| 30 | } |
| 31 | |
| 32 | void Blitter_8bppBase::SetPixel(void *video, int x, int y, PixelColour colour) |
| 33 | { |
| 34 | *((uint8_t *)video + x + y * _screen.pitch) = colour.p; |
| 35 | } |
| 36 | |
| 37 | void Blitter_8bppBase::DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, PixelColour colour, int width, int dash) |
| 38 | { |
no outgoing calls
no test coverage detected