00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef AUTOTEXTURESCALE_H
00016 #define AUTOTEXTURESCALE_H
00017
00018 #include "pandabase.h"
00019
00020 BEGIN_PUBLISH
00021 enum AutoTextureScale {
00022 ATS_none,
00023 ATS_down,
00024 ATS_up,
00025 ATS_pad,
00026 ATS_unspecified,
00027 };
00028 END_PUBLISH
00029
00030 EXPCL_PANDA_PUTIL ostream &operator << (ostream &out, AutoTextureScale ats);
00031 EXPCL_PANDA_PUTIL istream &operator >> (istream &in, AutoTextureScale &ats);
00032
00033 #endif