Home
last modified time | relevance | path

Searched refs:PLUGIN_CAN_DRYWET (Results 1 – 15 of 15) sorted by relevance

/dports/audio/carla/Carla-2.4.1/source/backend/
H A DCarlaBackend.h153 static const uint PLUGIN_CAN_DRYWET = 0x010; variable
/dports/audio/carla/Carla-2.4.1/source/frontend/
H A Dcarla_skin.py616 if self.w_knobs_right is not None and (self.fPluginInfo['hints'] & PLUGIN_CAN_DRYWET) != 0:
712 if (self.fPluginInfo['hints'] & PLUGIN_CAN_DRYWET) == 0: return
898 paramWidget.setVisible(hints & PLUGIN_CAN_DRYWET)
1087 if self.fPluginInfo['hints'] & PLUGIN_CAN_DRYWET:
1966 if self.fPluginInfo['hints'] & PLUGIN_CAN_DRYWET:
H A Dcarla_widgets.py48 PLUGIN_CAN_DRYWET,
974 self.ui.dial_drywet.setEnabled(pluginHints & PLUGIN_CAN_DRYWET)
H A Dcarla_host.py1391 pitem.getWidget().setInternalParameter(PLUGIN_CAN_DRYWET, 1.0)
1402 pitem.getWidget().setInternalParameter(PLUGIN_CAN_DRYWET, 0.0)
H A Dcarla_backend.py216 PLUGIN_CAN_DRYWET = 0x010 variable
/dports/audio/carla/Carla-2.4.1/source/backend/plugin/
H A DCarlaPluginSFZero.cpp418 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
H A DCarlaPluginJack.cpp1091 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
1384 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
H A DCarlaPluginJuce.cpp857 pData->hints |= PLUGIN_CAN_DRYWET; in reload()
1092 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
H A DCarlaPluginVST2.cpp1027 pData->hints |= PLUGIN_CAN_DRYWET; in reload()
1434 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
1802 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
H A DCarlaPluginNative.cpp1410 pData->hints |= PLUGIN_CAN_DRYWET; in reload()
1993 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) > 0) in process()
2373 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
H A DCarlaPluginLADSPADSSI.cpp1282 pData->hints |= PLUGIN_CAN_DRYWET; in reload()
1667 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
2067 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
H A DCarlaPluginBridge.cpp1441 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
1807 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
H A DCarlaPluginFluidSynth.cpp1251 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in reloadPrograms()
H A DCarlaPluginLV2.cpp3224 pData->hints |= PLUGIN_CAN_DRYWET; in reload()
3983 … if (MIDI_IS_CONTROL_BREATH_CONTROLLER(ctrlEvent.param) && (pData->hints & PLUGIN_CAN_DRYWET) != 0) in process()
4525 …const bool doDryWet = (pData->hints & PLUGIN_CAN_DRYWET) != 0 && carla_isNotEqual(pData->postProc… in processSingle()
/dports/audio/carla/Carla-2.4.1/source/backend/engine/
H A DCarlaEngine.cpp810 if (plugin->getHints() & PLUGIN_CAN_DRYWET) in addPlugin()