=
{
"bmp8",
}
void sbmp8_blit(const TSurface *dst, int dstX, int dstY, uint width, uint height, const TSurface *src, int srcX, int srcY)
16bpp blitter. Copies a rectangle from one surface to another.
Definition tonc_sbmp8.c:314
void sbmp8_frame(const TSurface *dst, int left, int top, int right, int bottom, u32 clr)
Draw a rectangle in 8-bit mode.
Definition tonc_sbmp8.c:277
void sbmp8_rect(const TSurface *dst, int left, int top, int right, int bottom, u32 clr)
Draw a rectangle in 8-bit mode.
Definition tonc_sbmp8.c:248
void sbmp8_floodfill(const TSurface *dst, int x, int y, u32 clr)
Floodfill an area of the same color with new color clr.
Definition tonc_sbmp8.c:366
u32 sbmp8_get_pixel(const TSurface *src, int x, int y)
Get the pixel value of src at (x, y).
Definition tonc_sbmp8.c:53
void sbmp8_vline(const TSurface *dst, int x, int y1, int y2, u32 clr)
Draw a vertical line on an 8-bit buffer.
Definition tonc_sbmp8.c:105
void sbmp8_hline(const TSurface *dst, int x1, int y, int x2, u32 clr)
Draw a horizontal line on an 8-bit buffer.
Definition tonc_sbmp8.c:87
void sbmp8_line(const TSurface *dst, int x1, int y1, int x2, int y2, u32 clr)
Draw a line on an 8-bit buffer.
Definition tonc_sbmp8.c:140
void sbmp8_plot(const TSurface *dst, int x, int y, u32 clr)
Plot a single pixel on a 8-bit buffer.
Definition tonc_sbmp8.c:67