00001 // Filename: config_pgraph.h 00002 // Created by: drose (21Feb02) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved 00008 // 00009 // All use of this software is subject to the terms of the Panda 3d 00010 // Software license. You should have received a copy of this license 00011 // along with this source code; you will also find a current copy of 00012 // the license at http://www.panda3d.org/license.txt . 00013 // 00014 // To contact the maintainers of this program write to 00015 // panda3d@yahoogroups.com . 00016 // 00017 //////////////////////////////////////////////////////////////////// 00018 00019 #ifndef CONFIG_PGRAPH_H 00020 #define CONFIG_PGRAPH_H 00021 00022 #include "pandabase.h" 00023 #include "notifyCategoryProxy.h" 00024 #include "dconfig.h" 00025 00026 class DSearchPath; 00027 00028 ConfigureDecl(config_pgraph, EXPCL_PANDA, EXPTP_PANDA); 00029 NotifyCategoryDecl(pgraph, EXPCL_PANDA, EXPTP_PANDA); 00030 NotifyCategoryDecl(loader, EXPCL_PANDA, EXPTP_PANDA); 00031 00032 extern const bool fake_view_frustum_cull; 00033 extern const bool unambiguous_graph; 00034 extern const bool paranoid_compose; 00035 extern const bool compose_componentwise; 00036 extern const bool bams_componentwise; 00037 00038 extern const bool m_dual; 00039 extern const bool m_dual_opaque; 00040 extern const bool m_dual_transparent; 00041 extern const bool m_dual_flash; 00042 00043 extern const bool asynchronous_loads; 00044 const DSearchPath &get_bam_path(); 00045 00046 extern Config::ConfigTable::Symbol *load_file_type; 00047 00048 extern EXPCL_PANDA void init_libpgraph(); 00049 00050 #endif