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.

41 lines
1.3KB

  1. /*
  2. ==============================================================================
  3. Build options for juce_gui_basics static library
  4. ==============================================================================
  5. */
  6. #ifndef CARLA_JUCE_GUI_BASICS_APPCONFIG_H_INCLUDED
  7. #define CARLA_JUCE_GUI_BASICS_APPCONFIG_H_INCLUDED
  8. #include "../juce_graphics/AppConfig.h"
  9. #include "../juce_data_structures/AppConfig.h"
  10. //=============================================================================
  11. /** Config: JUCE_ENABLE_REPAINT_DEBUGGING
  12. If this option is turned on, each area of the screen that gets repainted will
  13. flash in a random colour, so that you can see exactly which bits of your
  14. components are being drawn.
  15. */
  16. #define JUCE_ENABLE_REPAINT_DEBUGGING 0
  17. /** Config: JUCE_USE_XSHM
  18. Enables X shared memory for faster rendering on Linux. This is best left turned on
  19. unless you have a good reason to disable it.
  20. */
  21. #define JUCE_USE_XSHM 1
  22. /** Config: JUCE_USE_XRENDER
  23. Enables XRender to allow semi-transparent windowing on Linux.
  24. */
  25. #define JUCE_USE_XRENDER 0
  26. /** Config: JUCE_USE_XCURSOR
  27. Uses XCursor to allow ARGB cursor on Linux. This is best left turned on unless you have
  28. a good reason to disable it.
  29. */
  30. #define JUCE_USE_XCURSOR 1
  31. #endif // CARLA_JUCE_GUI_BASICS_APPCONFIG_H_INCLUDED