diff engine/core/video/sdl/sdlimage.h @ 430:ad1f09d954f9

Added the ability to render a vertex on the screen. The vertex is represented by a small square. fixes[t:455]
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Tue, 23 Feb 2010 19:25:59 +0000
parents ad7969d9460b
children 47b49b9b0c0a
line wrap: on
line diff
--- a/engine/core/video/sdl/sdlimage.h	Tue Feb 23 17:36:21 2010 +0000
+++ b/engine/core/video/sdl/sdlimage.h	Tue Feb 23 19:25:59 2010 +0000
@@ -47,6 +47,7 @@
  		bool putPixel(int x, int y, int r, int g, int b);
 		void drawLine(const Point& p1, const Point& p2, int r, int g, int b);
 		void drawQuad(const Point& p1, const Point& p2, const Point& p3, const Point& p4,  int r, int g, int b);
+		void drawVertex(const Point& p, const uint8_t size, int r, int g, int b);
 
 	protected:
 		void setClipArea(const Rect& cliparea, bool clear);