From 3592690b7865bfc0b86dae0841ff5fbae972b685 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 6 Nov 2007 22:40:29 +0000 Subject: Cleanup. svn-id: r29441 --- graphics/surface.cpp | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/graphics/surface.cpp b/graphics/surface.cpp index 2b07af1ccb..ccf5523be0 100644 --- a/graphics/surface.cpp +++ b/graphics/surface.cpp @@ -28,27 +28,20 @@ namespace Graphics { -static void plotPoint1(int x, int y, int color, void *data) { +template +static void plotPoint(int x, int y, int color, void *data) { Surface *s = (Surface *)data; if (x >= 0 && x < s->w && y >= 0 && y < s->h) { - byte *ptr = (byte *)s->getBasePtr(x, y); - *ptr = (byte)color; - } -} - -static void plotPoint2(int x, int y, int color, void *data) { - Surface *s = (Surface *)data; - if (x >= 0 && x < s->w && y >= 0 && y < s->h) { - uint16 *ptr = (uint16 *)s->getBasePtr(x, y); - *ptr = (uint16)color; + T *ptr = (T *)s->getBasePtr(x, y); + *ptr = (T)color; } } void Surface::drawLine(int x0, int y0, int x1, int y1, uint32 color) { if (bytesPerPixel == 1) - Graphics::drawLine(x0, y0, x1, y1, color, &plotPoint1, this); + Graphics::drawLine(x0, y0, x1, y1, color, plotPoint, this); else if (bytesPerPixel == 2) - Graphics::drawLine(x0, y0, x1, y1, color, &plotPoint2, this); + Graphics::drawLine(x0, y0, x1, y1, color, plotPoint, this); else error("Surface::drawLine: bytesPerPixel must be 1 or 2"); } -- cgit v1.2.3