Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update dpf
  • Loading branch information
falkTX committed Jul 7, 2019
1 parent f293f18 commit 7ec7a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 92 files
+1 −1 LICENSE
+16 −2 Makefile
+84 −29 Makefile.base.mk
+58 −18 Makefile.plugins.mk
+3 −0 README.md
+6 −84 dgl/Base.hpp
+40 −0 dgl/Cairo.hpp
+1 −1 dgl/Color.hpp
+13 −10 dgl/Geometry.hpp
+30 −52 dgl/Image.hpp
+125 −0 dgl/ImageBase.hpp
+4 −1 dgl/ImageWidgets.hpp
+87 −19 dgl/Makefile
+2 −1 dgl/NanoVG.hpp
+121 −0 dgl/OpenGL.hpp
+26 −1 dgl/Widget.hpp
+19 −2 dgl/Window.hpp
+27 −0 dgl/src/Cairo.cpp
+29 −19 dgl/src/Color.cpp
+14 −90 dgl/src/Geometry.cpp
+29 −73 dgl/src/Image.cpp
+106 −0 dgl/src/ImageBase.cpp
+22 −1 dgl/src/ImageWidgets.cpp
+22 −5 dgl/src/NanoVG.cpp
+157 −0 dgl/src/OpenGL.cpp
+13 −11 dgl/src/Widget.cpp
+107 −0 dgl/src/WidgetPrivateData.cpp
+5 −55 dgl/src/WidgetPrivateData.hpp
+135 −23 dgl/src/Window.cpp
+0 −121 dgl/src/pugl/common.h
+0 −41 dgl/src/pugl/event.h
+0 −32 dgl/src/pugl/gl.h
+0 −32 dgl/src/pugl/glu.h
+166 −59 dgl/src/pugl/pugl.h
+53 −142 dgl/src/pugl/pugl_internal.h
+503 −138 dgl/src/pugl/pugl_osx.m
+119 −37 dgl/src/pugl/pugl_win.cpp
+329 −232 dgl/src/pugl/pugl_x11.c
+24 −2 distrho/DistrhoInfo.hpp
+29 −3 distrho/DistrhoPlugin.hpp
+36 −8 distrho/DistrhoUI.hpp
+40 −10 distrho/extra/ExternalWindow.hpp
+9 −0 distrho/src/DistrhoDefines.h
+4 −3 distrho/src/DistrhoPluginCarla.cpp
+9 −4 distrho/src/DistrhoPluginChecks.h
+11 −6 distrho/src/DistrhoPluginJack.cpp
+2 −2 distrho/src/DistrhoPluginLADSPA+DSSI.cpp
+10 −8 distrho/src/DistrhoPluginLV2.cpp
+24 −8 distrho/src/DistrhoPluginLV2export.cpp
+35 −10 distrho/src/DistrhoPluginVST.cpp
+50 −15 distrho/src/DistrhoUI.cpp
+1 −1 distrho/src/DistrhoUIDSSI.cpp
+156 −70 distrho/src/DistrhoUIInternal.hpp
+18 −8 distrho/src/DistrhoUILV2.cpp
+6 −6 distrho/src/lv2/atom-util.h
+1 −0 distrho/src/lv2/ui.h
+2 −1 dpf.doxygen
+89 −0 examples/CairoUI/CairoExamplePlugin.cpp
+70 −0 examples/CairoUI/CairoExampleUI.cpp
+92 −0 examples/CairoUI/DemoWidgetBanner.cpp
+24 −0 examples/CairoUI/DemoWidgetBanner.hpp
+79 −0 examples/CairoUI/DemoWidgetClickable.cpp
+28 −0 examples/CairoUI/DemoWidgetClickable.hpp
+118 −0 examples/CairoUI/DistrhoPluginInfo.h
+56 −0 examples/CairoUI/Makefile
+36 −0 examples/ExternalUI/DistrhoPluginInfo.h
+188 −0 examples/ExternalUI/ExternalExamplePlugin.cpp
+187 −0 examples/ExternalUI/ExternalExampleUI.cpp
+40 −0 examples/ExternalUI/ExternalLauncher.sh
+40 −0 examples/ExternalUI/Makefile
+11 −0 examples/ExternalUI/README.md
+2 −1 examples/Info/DistrhoPluginInfo.h
+2 −2 examples/Info/InfoExamplePlugin.cpp
+25 −11 examples/Info/InfoExampleUI.cpp
+2 −2 examples/Info/Makefile
+1 −1 examples/Latency/LatencyExamplePlugin.cpp
+2 −1 examples/Meters/DistrhoPluginInfo.h
+1 −1 examples/Meters/ExamplePluginMeters.cpp
+3 −2 examples/Meters/ExampleUIMeters.cpp
+3 −3 examples/Meters/Makefile
+3 −3 examples/MidiThrough/MidiThroughExamplePlugin.cpp
+2 −1 examples/Parameters/DistrhoPluginInfo.h
+1 −1 examples/Parameters/ExamplePluginParameters.cpp
+21 −18 examples/Parameters/ExampleUIParameters.cpp
+3 −3 examples/Parameters/Makefile
+9 −7 examples/States/DistrhoPluginInfo.h
+2 −2 examples/States/ExamplePluginStates.cpp
+21 −22 examples/States/ExampleUIStates.cpp
+3 −3 examples/States/Makefile
+1 −1 utils/lv2-ttl-generator/GNUmakefile
+6 −3 utils/png2rgba.py
+113 −0 utils/res2c.py

0 comments on commit 7ec7a42

Please sign in to comment.