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.

24 lines
740B

  1. #include "rack.hpp"
  2. using namespace rack;
  3. const int ACNE_NB_TRACKS = 16;
  4. const int ACNE_NB_OUTS = 8;
  5. const int ACNE_NB_SNAPSHOTS = 16;
  6. const NVGcolor BLUE_BIDOO = nvgRGBA(42, 87, 117, 255);
  7. const NVGcolor LIGHTBLUE_BIDOO = nvgRGBA(45, 114, 143, 255);
  8. const NVGcolor RED_BIDOO = nvgRGBA(205, 31, 0, 255);
  9. const NVGcolor YELLOW_BIDOO = nvgRGBA(255, 233, 0, 255);
  10. const NVGcolor YELLOW_BIDOO_LIGHT = nvgRGBA(255, 233, 0, 120);
  11. const NVGcolor SAND_BIDOO = nvgRGBA(230, 220, 191, 255);
  12. const NVGcolor ORANGE_BIDOO = nvgRGBA(228, 87, 46, 255);
  13. const NVGcolor PINK_BIDOO = nvgRGBA(164, 3, 111, 255);
  14. const NVGcolor GREEN_BIDOO = nvgRGBA(2, 195, 154, 255);
  15. RACK_PLUGIN_DECLARE(Bidoo);
  16. #ifdef USE_VST2
  17. #define plugin "Bidoo"
  18. #endif // USE_VST2