2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2005-04-27 20:29:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-04-27 20:29:19 +00:00
|
|
|
*
|
2006-02-11 10:10:44 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2005-04-27 20:29:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GRAPHICS_PRIMITIVES_H
|
|
|
|
#define GRAPHICS_PRIMITIVES_H
|
|
|
|
|
|
|
|
namespace Graphics {
|
|
|
|
|
2007-11-06 22:34:55 +00:00
|
|
|
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2007-11-25 13:33:28 +00:00
|
|
|
void drawThickLine(int x0, int y0, int x1, int y1, int thickness, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2005-04-27 20:29:19 +00:00
|
|
|
|
|
|
|
} // End of namespace Graphics
|
|
|
|
|
|
|
|
#endif
|
2007-11-06 22:34:55 +00:00
|
|
|
|