config_grutil.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Filename: config_grutil.h
  2. // Created by: drose (24May00)
  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. #ifndef CONFIG_GRUTIL_H
  15. #define CONFIG_GRUTIL_H
  16. #include "pandabase.h"
  17. #include "notifyCategoryProxy.h"
  18. #include "configVariableDouble.h"
  19. #include "configVariableString.h"
  20. #include "configVariableInt.h"
  21. #include "configVariableBool.h"
  22. NotifyCategoryDecl(grutil, EXPCL_PANDA_GRUTIL, EXPTP_PANDA_GRUTIL);
  23. extern ConfigVariableDouble frame_rate_meter_update_interval;
  24. extern ConfigVariableString frame_rate_meter_text_pattern;
  25. extern ConfigVariableInt frame_rate_meter_layer_sort;
  26. extern ConfigVariableDouble frame_rate_meter_scale;
  27. extern ConfigVariableDouble frame_rate_meter_side_margins;
  28. extern ConfigVariableDouble scene_graph_analyzer_meter_update_interval;
  29. extern ConfigVariableInt scene_graph_analyzer_meter_layer_sort;
  30. extern ConfigVariableDouble scene_graph_analyzer_meter_scale;
  31. extern ConfigVariableDouble scene_graph_analyzer_meter_side_margins;
  32. extern ConfigVariableBool pfm_force_littleendian;
  33. extern ConfigVariableBool pfm_reverse_dimensions;
  34. extern ConfigVariableInt pfm_vis_max_vertices;
  35. extern ConfigVariableInt pfm_vis_max_indices;
  36. extern ConfigVariableBool movies_sync_pages;
  37. extern EXPCL_PANDA_GRUTIL void init_libgrutil();
  38. #endif