config_assimp.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * PANDA 3D SOFTWARE
  3. * Copyright (c) Carnegie Mellon University. All rights reserved.
  4. *
  5. * All use of this software is subject to the terms of the revised BSD
  6. * license. You should have received a copy of this license along
  7. * with this source code in a file named "LICENSE."
  8. *
  9. * @file config_assimp.h
  10. * @author rdb
  11. * @date 2011-03-29
  12. */
  13. #ifndef CONFIG_ASSIMP_H
  14. #define CONFIG_ASSIMP_H
  15. #include "pandatoolbase.h"
  16. #include "notifyCategoryProxy.h"
  17. #include "configVariableBool.h"
  18. #include "configVariableDouble.h"
  19. #include "dconfig.h"
  20. ConfigureDecl(config_assimp, EXPCL_ASSIMP, EXPTP_ASSIMP);
  21. NotifyCategoryDecl(assimp, EXPCL_ASSIMP, EXPTP_ASSIMP);
  22. extern ConfigVariableBool assimp_calc_tangent_space;
  23. extern ConfigVariableBool assimp_join_identical_vertices;
  24. extern ConfigVariableBool assimp_improve_cache_locality;
  25. extern ConfigVariableBool assimp_remove_redundant_materials;
  26. extern ConfigVariableBool assimp_fix_infacing_normals;
  27. extern ConfigVariableBool assimp_optimize_meshes;
  28. extern ConfigVariableBool assimp_optimize_graph;
  29. extern ConfigVariableBool assimp_flip_winding_order;
  30. extern ConfigVariableBool assimp_gen_normals;
  31. extern ConfigVariableDouble assimp_smooth_normal_angle;
  32. extern ConfigVariableBool assimp_collapse_dummy_root_node;
  33. extern EXPCL_ASSIMP void init_libassimp();
  34. #endif