Panda3D
config_tinydisplay.h
1 // Filename: config_tinydisplay.h
2 // Created by: drose (24Apr08)
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_TINYDISPLAY_H
16 #define CONFIG_TINYDISPLAY_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(tinydisplay, EXPCL_TINYDISPLAY, EXPTP_TINYDISPLAY);
25 
26 extern EXPCL_TINYDISPLAY void init_libtinydisplay();
27 extern "C" EXPCL_TINYDISPLAY int get_pipe_type_p3tinydisplay();
28 
29 extern ConfigVariableBool show_resize_box;
30 extern ConfigVariableBool osx_disable_event_loop;
31 extern ConfigVariableInt osx_mouse_wheel_scale;
32 
33 extern ConfigVariableInt td_texture_ram;
34 extern ConfigVariableBool td_ignore_mipmaps;
35 extern ConfigVariableBool td_ignore_clamp;
36 extern ConfigVariableBool td_perspective_textures;
37 
38 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as an integer type.