| 123 | } |
| 124 | |
| 125 | std::string GetBuildInfoString() |
| 126 | { |
| 127 | return |
| 128 | #if DEBUG |
| 129 | "DEBUG BUILD " + |
| 130 | #endif |
| 131 | #if BESPOKE_NIGHTLY && !BESPOKE_SUPPRESS_NIGHTLY_LABEL |
| 132 | "NIGHTLY " + |
| 133 | #endif |
| 134 | juce::JUCEApplication::getInstance()->getApplicationVersion().toStdString() + " (" + std::string(__DATE__) + " " + std::string(__TIME__) + ")"; |
| 135 | } |
| 136 | |
| 137 | void DrawAudioBuffer(float width, float height, ChannelBuffer* buffer, float start, float end, float pos, float vol /*=1*/, ofColor color /*=ofColor::black*/, int wraparoundFrom /*= -1*/, int wraparoundTo /*= 0*/) |
| 138 | { |
no outgoing calls
no test coverage detected