00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CONFIG_TINYDISPLAY_H
00016 #define CONFIG_TINYDISPLAY_H
00017
00018 #include "pandabase.h"
00019 #include "notifyCategoryProxy.h"
00020 #include "configVariableString.h"
00021 #include "configVariableBool.h"
00022 #include "configVariableInt.h"
00023
00024 NotifyCategoryDecl(tinydisplay, EXPCL_TINYDISPLAY, EXPTP_TINYDISPLAY);
00025
00026 extern EXPCL_TINYDISPLAY void init_libtinydisplay();
00027 extern "C" EXPCL_TINYDISPLAY int get_pipe_type_p3tinydisplay();
00028
00029 extern ConfigVariableBool show_resize_box;
00030 extern ConfigVariableBool osx_disable_event_loop;
00031 extern ConfigVariableInt osx_mouse_wheel_scale;
00032
00033 extern ConfigVariableInt td_texture_ram;
00034 extern ConfigVariableBool td_ignore_mipmaps;
00035 extern ConfigVariableBool td_ignore_clamp;
00036 extern ConfigVariableBool td_perspective_textures;
00037
00038 #endif