xref: /haiku/src/tests/kits/opengl/glinfo/OpenGLApp.cpp (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2009 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Artur Wyszynski <harakash@gmail.com>
7  */
8 
9 
10 #include "OpenGLApp.h"
11 
12 #include <Locale.h>
13 
14 #include "OpenGLWindow.h"
15 
16 
17 OpenGLApp::OpenGLApp()
18 	:
19 	BApplication("application/x-vnd.Haiku-GLInfo")
20 {
21 }
22 
23 
24 OpenGLApp::~OpenGLApp()
25 {
26 }
27 
28 
29 void
30 OpenGLApp::ReadyToRun()
31 {
32 	fWindow = new OpenGLWindow();
33 	fWindow->Show();
34 }
35 
36 
37 int main(int argc, const char** argv)
38 {
39 	OpenGLApp app;
40 	app.Run();
41 	return 0;
42 }
43