src/glRenderer.h

changeset 1023
9450ac3cd930
parent 1014
f0a8ecb6a357
child 1032
376db8dd6a42
--- a/src/glRenderer.h	Tue Feb 16 16:28:44 2016 +0200
+++ b/src/glRenderer.h	Tue Feb 16 19:59:43 2016 +0200
@@ -50,6 +50,9 @@
 //
 struct LDGLOverlay
 {
+	LDGLOverlay();
+	~LDGLOverlay();
+
 	Vertex			v0,
 					v1;
 	int				ox,
@@ -116,13 +119,17 @@
 
 MAKE_ITERABLE_ENUM (ECamera)
 
-//
+
 // CameraIcon::image is a heap-allocated QPixmap because otherwise it gets
 // initialized before program gets to main() and constructs a QApplication
 // and Qt doesn't like that.
 //
+// TODO: maybe this then shouldn't get allocated before the program gets to main().
 struct CameraIcon
 {
+	CameraIcon();
+	~CameraIcon();
+
 	QPixmap*		image;
 	QRect			sourceRect;
 	QRect			targetRect;

mercurial