Skip to content

Commit

Permalink
Update dpf again
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed May 26, 2024
1 parent 020a55f commit 611c117
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ bench/master_me/faustbench.cpp:
# dgl target, building the dpf little graphics library

DPF_EXTRA_ARGS = DGL_NAMESPACE=MasterMeDGL
DPF_EXTRA_ARGS += FILE_BROWSER_DISABLED=true
DPF_EXTRA_ARGS += NVG_FONT_TEXTURE_FLAGS=NVG_IMAGE_NEAREST
DPF_EXTRA_ARGS += SKIP_NATIVE_AUDIO_FALLBACK=true

Expand Down
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 68 files
+15 −14 .github/workflows/cmake.yml
+15 −14 .github/workflows/example-plugins.yml
+9 −8 .github/workflows/makefile.yml
+5 −5 CMakeLists.txt
+8 −4 Makefile
+46 −6 Makefile.base.mk
+45 −19 Makefile.plugins.mk
+290 −38 cmake/DPF-plugin.cmake
+36 −1 dgl/Application.hpp
+29 −0 dgl/Base.hpp
+2 −26 dgl/Makefile
+0 −65 dgl/Web.hpp
+2 −2 dgl/Widget.hpp
+6 −6 dgl/Window.hpp
+70 −2 dgl/src/Application.cpp
+17 −45 dgl/src/Stub.cpp
+2 −2 dgl/src/Window.cpp
+9 −9 dgl/src/WindowPrivateData.cpp
+2 −2 dgl/src/WindowPrivateData.hpp
+1 −1 distrho/DistrhoPluginUtils.hpp
+4 −54 distrho/DistrhoUI.hpp
+13 −0 distrho/DistrhoUIMain.cpp
+9 −8 distrho/DistrhoUI_macOS.mm
+27 −0 distrho/DistrhoUI_win32.cpp
+1 −1 distrho/DistrhoUtils.hpp
+5 −1 distrho/extra/FileBrowserDialogImpl.hpp
+3 −3 distrho/extra/WebView.hpp
+758 −194 distrho/extra/WebViewImpl.cpp
+45 −5 distrho/extra/WebViewImpl.hpp
+101 −0 distrho/extra/WebViewWin32.hpp
+15 −0 distrho/extra/choc/LICENSE.md
+22 −0 distrho/extra/choc/README.md
+2,803 −0 distrho/extra/choc/choc.patch
+154 −0 distrho/extra/choc/choc_DesktopWindow.h
+141 −0 distrho/extra/choc/choc_DynamicLibrary.h
+511 −0 distrho/extra/choc/choc_MemoryDLL.h
+67 −0 distrho/extra/choc/choc_Platform.h
+74 −0 distrho/extra/choc/choc_StringUtilities.h
+4,769 −0 distrho/extra/choc/choc_WebView.h
+37 −5 distrho/src/DistrhoPluginAU.cpp
+3 −3 distrho/src/DistrhoPluginCLAP.cpp
+52 −50 distrho/src/DistrhoPluginChecks.h
+3 −0 distrho/src/DistrhoPluginInternal.hpp
+12 −10 distrho/src/DistrhoPluginJACK.cpp
+2 −2 distrho/src/DistrhoPluginLV2.cpp
+3 −3 distrho/src/DistrhoPluginLV2export.cpp
+4 −14 distrho/src/DistrhoPluginVST.hpp
+2 −10 distrho/src/DistrhoPluginVST2.cpp
+220 −130 distrho/src/DistrhoUI.cpp
+19 −53 distrho/src/DistrhoUIInternal.hpp
+30 −108 distrho/src/DistrhoUIPrivateData.hpp
+3 −169 distrho/src/DistrhoUIVST3.cpp
+1 −7 distrho/src/DistrhoUtils.cpp
+4 −4 distrho/src/jackbridge/NativeBridge.hpp
+2 −7 examples/EmbedExternalUI/CMakeLists.txt
+9 −3 examples/EmbedExternalUI/DistrhoPluginInfo.h
+7 −7 examples/EmbedExternalUI/EmbedExternalExamplePlugin.cpp
+25 −418 examples/EmbedExternalUI/EmbedExternalExampleUI.cpp
+1 −4 examples/EmbedExternalUI/Makefile
+1 −0 examples/FileHandling/CMakeLists.txt
+1 −0 examples/FileHandling/Makefile
+2 −2 examples/Meters/ExampleUIMeters.cpp
+0 −1 examples/SendNote/DistrhoPluginInfo.h
+6 −5 examples/WebMeters/CMakeLists.txt
+3 −4 examples/WebMeters/DistrhoPluginInfo.h
+15 −26 examples/WebMeters/ExampleUIWebMeters.cpp
+24 −14 examples/WebMeters/Makefile
+150 −0 examples/WebMeters/index.html
2 changes: 1 addition & 1 deletion dpf-widgets
1 change: 0 additions & 1 deletion plugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ DPF_PATH = ../dpf

# tweak DPF build
export DGL_NAMESPACE = MasterMeDGL
export FILE_BROWSER_DISABLED = true
export NVG_FONT_TEXTURE_FLAGS = NVG_IMAGE_NEAREST
export SKIP_NATIVE_AUDIO_FALLBACK = true

Expand Down

0 comments on commit 611c117

Please sign in to comment.