Panda3D
config_glxdisplay.h
1 // Filename: config_glxdisplay.h
2 // Created by: cary (07Oct99)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef __CONFIG_GLXDISPLAY_H__
16 #define __CONFIG_GLXDISPLAY_H__
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableString.h"
21 #include "configVariableBool.h"
22 #include "configVariableInt.h"
23 
24 NotifyCategoryDecl(glxdisplay, EXPCL_PANDAGL, EXPTP_PANDAGL);
25 
26 extern EXPCL_PANDAGL void init_libglxdisplay();
27 
28 extern ConfigVariableBool glx_get_proc_address;
29 extern ConfigVariableBool glx_get_os_address;
30 
31 extern ConfigVariableBool glx_support_fbconfig;
32 extern ConfigVariableBool glx_support_pbuffer;
33 extern ConfigVariableBool glx_support_pixmap;
34 
35 #endif /* __CONFIG_GLXDISPLAY_H__ */
This is a convenience class to specialize ConfigVariable as a boolean type.