Update a few modules and VCV
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
4c4c3ae135
commit
8df28459a2
13 changed files with 29 additions and 27 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit d1808328adb71025cf5eb5227105d72905d5279c
|
||||
Subproject commit f2fa0649f59dfba484de23f8c80fdd2b7a1e8c3e
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit a72734c8b0b91913e1d16a9d25b8e09a1d12af78
|
||||
Subproject commit 3861620c3b6788779289254f566336cca2427c0a
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit ba9661fb45b01073645f41fd0d57124c27737c74
|
||||
Subproject commit d77b971fa28d28270346f4465dfcbc40bd3e5b08
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 7a0222193e948aa60a310195318fa65d87a772ed
|
||||
Subproject commit e80c8cb0873fbccca2d382d564e69b1a88ecb1f5
|
||||
|
|
@ -15,6 +15,11 @@ void loadThemeAndContrastFromDefault(int* panelTheme, float* panelContrast) {
|
|||
}
|
||||
|
||||
|
||||
bool isDark(int*) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void createPanelThemeMenu(ui::Menu*, int*, float*, SvgPanel*) {}
|
||||
|
||||
|
||||
|
|
@ -51,6 +56,6 @@ void InverterWidget::draw(const DrawArgs& args) {
|
|||
nvgFill(args.vg);
|
||||
nvgClosePath(args.vg);
|
||||
// nvgRestore(args.vg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,10 +4,6 @@
|
|||
# Created by falkTX
|
||||
#
|
||||
|
||||
# FIXME items for v2:
|
||||
# Bidoo includes <system.hpp>, PRIVATE workaround
|
||||
# ImpromptuModular setNextCableColor
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Build config
|
||||
|
||||
|
|
@ -350,7 +346,7 @@ PLUGIN_FILES += $(wildcard Bidoo/src/dep/*.cpp)
|
|||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/filters/*.cpp)
|
||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/freeverb/*.cpp)
|
||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/lodepng/*.cpp)
|
||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/resampler/*.cpp)
|
||||
PLUGIN_FILES += $(filter-out Bidoo/src/dep/resampler/main.cpp,$(wildcard Bidoo/src/dep/resampler/*.cpp))
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
BIDOO_CUSTOM = LadderFilter $(DRWAV)
|
||||
|
|
@ -875,7 +871,6 @@ $(BUILD_DIR)/ImpromptuModular/src/Foundr%.cpp.o: ImpromptuModular/src/Foundr%.cp
|
|||
-DpluginInstance=pluginInstance__ImpromptuModular \
|
||||
-DStepAttributes=StepAttributesKernel \
|
||||
|
||||
# FIXME -DsetNextCableColor=isComplete shouldn't be here
|
||||
$(BUILD_DIR)/ImpromptuModular%.cpp.o: ImpromptuModular%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
@ -884,7 +879,7 @@ $(BUILD_DIR)/ImpromptuModular%.cpp.o: ImpromptuModular%.cpp
|
|||
$(foreach m,$(IMPROMPTUMODULAR_CUSTOM_PER_FILE),$(call custom_per_file_names,$(m),ImpromptuModular_$(shell basename $*))) \
|
||||
-DpluginInstance=pluginInstance__ImpromptuModular \
|
||||
-Dinit=init__ImpromptuModular \
|
||||
-DsetNextCableColor=isComplete
|
||||
-Wno-format-truncation
|
||||
|
||||
$(BUILD_DIR)/JW-Modules/%.cpp.o: JW-Modules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
|
|
@ -922,6 +917,7 @@ $(BUILD_DIR)/mscHack/%.cpp.o: mscHack/%.cpp
|
|||
-DthePlugin=pluginInstance__mscHack \
|
||||
-Dinit=init__mscHack \
|
||||
-Wno-class-memaccess \
|
||||
-Wno-format-overflow \
|
||||
-Wno-non-c-typedef-for-linkage \
|
||||
-Wno-unused-but-set-variable
|
||||
|
||||
|
|
|
|||
|
|
@ -203,6 +203,7 @@ void setupSamples();
|
|||
/* NOTE too much noise in original include, do this a different way
|
||||
// #include "ImpromptuModular/src/ImpromptuModular.hpp"
|
||||
*/
|
||||
extern Model *modelAdaptiveQuantizer;
|
||||
extern Model *modelBigButtonSeq;
|
||||
extern Model *modelBigButtonSeq2;
|
||||
extern Model *modelChordKey;
|
||||
|
|
@ -1002,6 +1003,7 @@ static void initStatic__ImpromptuModular()
|
|||
const StaticPluginLoader spl(p, "ImpromptuModular");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelAdaptiveQuantizer);
|
||||
p->addModel(modelBigButtonSeq);
|
||||
p->addModel(modelBigButtonSeq2);
|
||||
p->addModel(modelChordKey);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue