xref: /haiku/src/tests/kits/opengl/glinfo/OpenGLView.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2009-2010 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef OPENGL_VIEW_H
6 #define OPENGL_VIEW_H
7 
8 
9 #include <GroupView.h>
10 
11 
12 #define MENU_AUTO_MESSAGE	'auto'
13 #define MENU_SWRAST_MESSAGE	'swrt'
14 #define MENU_SWPIPE_MESSAGE	'swpi'
15 #define MENU_SWLLVM_MESSAGE	'swll'
16 
17 
18 class OpenGLView : public BGroupView {
19 public:
20 								OpenGLView();
21 		virtual					~OpenGLView();
22 };
23 
24 
25 #endif	/* OPENGL_VIEW_H */
26