Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
726B

  1. // SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <falktx@falktx.com>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "CarlaUtils.h"
  4. #ifdef USING_JUCE
  5. # include "carla_juce/carla_juce.h"
  6. #endif
  7. // -------------------------------------------------------------------------------------------------------------------
  8. void carla_juce_init()
  9. {
  10. #ifdef USING_JUCE
  11. CarlaJUCE::initialiseJuce_GUI();
  12. #endif
  13. }
  14. void carla_juce_idle()
  15. {
  16. #ifdef USING_JUCE
  17. CarlaJUCE::idleJuce_GUI();
  18. #endif
  19. }
  20. void carla_juce_cleanup()
  21. {
  22. #ifdef USING_JUCE
  23. CarlaJUCE::shutdownJuce_GUI();
  24. #endif
  25. }
  26. // -------------------------------------------------------------------------------------------------------------------