1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-03 07:29:37 +00:00

Merge branch 'IcePic-master-patch-13431' into 'master'

Add function to clear pixels in c64-bitmap.c.

See merge request camelot/kickc!8
This commit is contained in:
Jesper Balman Gravgaard 2022-01-23 18:49:55 +00:00
commit d44a56fa77
2 changed files with 9 additions and 0 deletions

View File

@ -12,5 +12,8 @@ void bitmap_clear(char bgcol, char fgcol);
/// Plot a single dot in the bitmap
void bitmap_plot(unsigned int x, char y);
/// Clear a single dot in the bitmap
void bitmap_unplot(unsigned int x, char y);
/// Draw a line on the bitmap using bresenhams algorithm
void bitmap_line(unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2);

View File

@ -50,6 +50,12 @@ void bitmap_plot(unsigned int x, char y) {
*plotter |= bitmap_plot_bit[BYTE0(x)];
}
void bitmap_unplot(unsigned int x, char y) {
char* plotter = (char*) MAKEWORD( bitmap_plot_yhi[y], bitmap_plot_ylo[y] );
plotter += ( x & $fff8 );
*plotter &= ~(bitmap_plot_bit[BYTE0(x)]);
}
// Draw a line on the bitmap using bresenhams algorithm
void bitmap_line(unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2) {
unsigned int x = x1;