AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit 73d8bc6739376a97d2ed8b48a115d59d31668328
parent d573e4ab09c5f7628941b42e0e73c0736c759b45
Author: jatin <[email protected]>
Date:   Wed, 11 Jan 2023 22:19:33 -0800

Slightly improved strategy for handling OpenGL option

Diffstat:
MPlugin/Source/GUI/SettingsButton.cpp | 21++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/Plugin/Source/GUI/SettingsButton.cpp b/Plugin/Source/GUI/SettingsButton.cpp @@ -10,13 +10,20 @@ SettingsButton::SettingsButton (const ChowtapeModelAudioProcessor& processor, ch proc (processor), openGLHelper (oglHelper) { - pluginSettings->addProperties<&SettingsButton::globalSettingChanged> ({ { openglID, true } }, *this); + Logger::writeToLog ("Checking OpenGL availability..."); + const auto shouldUseOpenGLByDefault = openGLHelper != nullptr && openGLHelper->isOpenGLAvailable(); +#if CHOWDSP_OPENGL_IS_AVAILABLE + Logger::writeToLog ("OpenGL is available on this system: " + String (shouldUseOpenGLByDefault ? "TRUE" : "FALSE")); +#else + Logger::writeToLog ("Plugin was built without linking to OpenGL!"); +#endif + pluginSettings->addProperties<&SettingsButton::globalSettingChanged> ({ { openglID, shouldUseOpenGLByDefault } }, *this); globalSettingChanged (openglID); auto cog = Drawable::createFromImageData (BinaryData::cogsolid_svg, BinaryData::cogsolid_svgSize); setImages (cog.get()); - onClick = [=] + onClick = [this] { showSettingsMenu(); }; } @@ -25,7 +32,7 @@ void SettingsButton::globalSettingChanged (SettingID settingID) if (settingID != openglID) return; - if (openGLHelper != nullptr) + if (openGLHelper != nullptr && openGLHelper->isOpenGLAvailable()) { const auto shouldUseOpenGL = pluginSettings->getProperty<bool> (openglID); if (shouldUseOpenGL == openGLHelper->isAttached()) @@ -43,11 +50,11 @@ void SettingsButton::showSettingsMenu() openGLMenu (menu, 100); menu.addSeparator(); - menu.addItem ("View Source Code", [=] + menu.addItem ("View Source Code", [] { URL ("https://github.com/jatinchowdhury18/AnalogTapeModel").launchInDefaultBrowser(); }); - menu.addItem ("Copy Diagnostic Info", [=] + menu.addItem ("Copy Diagnostic Info", [this] { copyDiagnosticInfo(); }); - menu.addItem ("View User Manual", [=] + menu.addItem ("View User Manual", [] { URL ("https://chowdsp.com/manuals/ChowTapeManual.pdf").launchInDefaultBrowser(); }); // get top level component that is big enough @@ -85,7 +92,7 @@ void SettingsButton::openGLMenu (PopupMenu& menu, int itemID) PopupMenu::Item item; item.itemID = ++itemID; item.text = "Use OpenGL"; - item.action = [=] + item.action = [this, isCurrentlyOn] { pluginSettings->setProperty (openglID, ! isCurrentlyOn); }; item.colour = isCurrentlyOn ? onColour : offColour;