Blitter: Add method to set rectangle colours, skipping D7

This commit is contained in:
Jonathan G Rennison
2024-01-17 02:03:14 +00:00
parent 5c5057e0fc
commit 0e581e0eeb
10 changed files with 85 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ public:
void DrawLine(void *video, int x, int y, int x2, int y2, int screen_width, int screen_height, uint8_t colour, int width, int dash) override;
void SetRect(void *video, int x, int y, const uint8_t *colours, uint lines, uint width, uint pitch) override;
void SetRect32(void *video, int x, int y, const uint32_t *colours, uint lines, uint width, uint pitch) override;
void SetRectNoD7(void *video, int x, int y, const uint8_t *colours, uint lines, uint width, uint pitch) override;
void DrawRect(void *video, int width, int height, uint8_t colour) override;
void DrawRectAt(void *video, int x, int y, int width, int height, uint8_t colour) override;
void CopyFromBuffer(void *video, const void *src, int width, int height) override;