aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gfx/gfx_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/gfx/gfx_tools.h')
-rw-r--r--engines/sci/gfx/gfx_tools.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/engines/sci/gfx/gfx_tools.h b/engines/sci/gfx/gfx_tools.h
index 97451196e1..63f4d441f4 100644
--- a/engines/sci/gfx/gfx_tools.h
+++ b/engines/sci/gfx/gfx_tools.h
@@ -136,21 +136,6 @@ void gfx_draw_line_pixmap_i(gfx_pixmap_t *pxm, Common::Point start, Common::Poin
** The line is not clipped. Invalid x, y, x1, y1 values will result in memory corruption.
*/
-void gfx_draw_line_buffer(byte *buffer, int linewidth, int pixelwidth,
- Common::Point start, Common::Point end, unsigned int color);
-/* Draws a line to a linear pixel buffer
-** Parameters: (byte *) buffer: Pointer to the start of the buffer to draw to
-** (int) linewidth: Number of bytes per pixel line in the buffer
-** (int) pixelwidth: Number of bytes per pixel
-** (Common::Point) start: Starting point of the line to draw
-** (Common::Point) end: End point of the line to draw
-** (rect_t) Coordinates: the line should be drawn to (must be clipped already)
-** xl and yl describe relative offsets, as usual.
-** (unsigned int) color: The color to draw (only the lowest 8 * pixelwidth bits are relevant)
-** Returns : (void)
-** This function assumes 1 <= pixelwidth <= 4
-*/
-
void gfx_draw_box_pixmap_i(gfx_pixmap_t *pxm, rect_t box, int color);
/* Draws a filled rectangular area to a pixmap's index buffer
** Parameters: (gfx_pixmap_t *) pxm: The pixmap to draw to