Removed more unneeded test code

svn-id: r35250
This commit is contained in:
Filippos Karapetis 2008-12-05 18:56:52 +00:00
parent bc5f25b5a0
commit 72ba213b36
2 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,7 @@ Gfx::~Gfx() {
_backBuffer.free();
}
#ifdef SAGA_DEBUG
void Surface::drawPalette() {
int x;
int y;
@ -78,6 +79,7 @@ void Surface::drawPalette() {
}
}
}
#endif
// * Copies a rectangle from a raw 8 bit pixel buffer to the specified surface.
// - The surface must match the logical dimensions of the buffer exactly.

View File

@ -99,7 +99,9 @@ struct Color {
struct Surface : Graphics::Surface {
void transitionDissolve(const byte *sourceBuffer, const Common::Rect &sourceRect, int flags, double percent);
#ifdef SAGA_DEBUG
void drawPalette();
#endif
void drawPolyLine(const Point *points, int count, int color);
void blit(const Common::Rect &destRect, const byte *sourceBuffer);