2011-04-16 14:08:33 +02:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
2009-10-04 10:58:28 +00:00
|
|
|
*
|
2011-04-16 14:08:33 +02:00
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
2009-10-04 10:58:28 +00:00
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2014-04-05 18:18:42 +02:00
|
|
|
*
|
2009-10-04 10:58:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GRAPHICS_PRIMITIVES_H
|
|
|
|
#define GRAPHICS_PRIMITIVES_H
|
|
|
|
|
2016-11-12 08:49:29 +01:00
|
|
|
#include "common/rect.h"
|
|
|
|
|
2009-10-04 10:58:28 +00:00
|
|
|
namespace Graphics {
|
|
|
|
|
|
|
|
void drawLine(int x0, int y0, int x1, int y1, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2016-11-12 08:49:29 +01: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);
|
2012-11-18 19:07:46 +01: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-11-12 08:49:29 +01: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);
|
2020-05-09 20:05:54 +02:00
|
|
|
void drawRect(Common::Rect &rect, int color, void (*plotProc)(int, int, int, void *), void *data);
|
2016-11-12 08:49:29 +01: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);
|
2009-10-04 10:58:28 +00:00
|
|
|
|
2013-07-07 15:29:33 +02:00
|
|
|
} // End of namespace Graphics
|
2009-10-04 10:58:28 +00:00
|
|
|
|
|
|
|
#endif
|