Panda3D
config_pnmimage.h
1 // Filename: config_pnmimage.h
2 // Created by: drose (19Mar00)
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_PNMIMAGE_H
16 #define CONFIG_PNMIMAGE_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableBool.h"
21 #include "configVariableDouble.h"
22 
23 NotifyCategoryDecl(pnmimage, EXPCL_PANDA_PNMIMAGE, EXPTP_PANDA_PNMIMAGE);
24 
25 extern ConfigVariableBool pfm_force_littleendian;
26 extern ConfigVariableBool pfm_reverse_dimensions;
27 extern ConfigVariableBool pfm_resize_gaussian;
28 extern ConfigVariableBool pfm_resize_quick;
29 extern ConfigVariableDouble pfm_resize_radius;
30 
31 extern EXPCL_PANDA_PNMIMAGE void init_libpnmimage();
32 
33 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a floating-point type.