diff EXCLUDE/GLTSF/include/App.hpp @ 4738:381d402a5e90

Added support for On_Resized event to App. Added OpenGL code to draw a rotating triangle. Rearranged main loop code.
author dewyatt
date Sat, 12 Jun 2010 03:21:54 -0400
parents 0c7c67d4e6ee
children
line wrap: on
line diff
--- a/EXCLUDE/GLTSF/include/App.hpp	Sat Jun 12 03:19:43 2010 -0400
+++ b/EXCLUDE/GLTSF/include/App.hpp	Sat Jun 12 03:21:54 2010 -0400
@@ -18,12 +18,16 @@
 	virtual void On_Key_Down(int Key);
 	virtual void On_Key_Up(int Key);
 	virtual void On_Char(unsigned int Char);
+	virtual void On_Resized(unsigned int Width, unsigned int Height);
 
 private:
+	void Update();
+	void Draw();
+
 	static const int Width = 800;
 	static const int Height = 600;
 	static const int Bits_Per_Pixel = 32;
-	static const bool Fullscreen = false;
+	static const bool Fullscreen = true;
 
 	Window my_Window;
 	bool my_Done;