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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2005-04-27 20:29:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GRAPHICS_PRIMITIVES_H
|
|
|
|
#define GRAPHICS_PRIMITIVES_H
|
|
|
|
|
2016-02-07 18:02:53 +00:00
|
|
|
#include "common/rect.h"
|
|
|
|
|
2005-04-27 20:29:19 +00:00
|
|
|
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);
|
2016-02-07 18:02:53 +00:00
|
|
|
void drawHLine(int x1, int x2, int y, int color, void (*plotProc)(int, int, int, void *), void *data);
|
|
|
|
void drawVLine(int x, int y1, int y2, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2011-10-27 23:20:02 +00:00
|
|
|
void drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2016-02-07 18:02:53 +00:00
|
|
|
void drawThickLine2(int x1, int y1, int x2, int y2, int thick, int color,
|
|
|
|
void (*plotProc)(int, int, int, void *), void *data);
|
|
|
|
void drawFilledRect(Common::Rect &rect, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2019-12-25 15:07:22 +00:00
|
|
|
void drawRect(Common::Rect &rect, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2016-02-07 18:02:53 +00:00
|
|
|
void drawRoundRect(Common::Rect &rect, int arc, int color, bool filled, void (*plotProc)(int, int, int, void *), void *data);
|
|
|
|
void drawPolygonScan(int *polyX, int *polyY, int npoints, Common::Rect &bbox, int color,
|
|
|
|
void (*plotProc)(int, int, int, void *), void *data);
|
|
|
|
void drawEllipse(int x0, int y0, int x1, int y1, int color, bool filled, void (*plotProc)(int, int, int, void *), void *data);
|
2005-04-27 20:29:19 +00:00
|
|
|
|
2013-01-26 18:33:27 +00:00
|
|
|
} // End of namespace Graphics
|
2005-04-27 20:29:19 +00:00
|
|
|
|
|
|
|
#endif
|