commit ed7bc8408125b781b98c8b11caadd51b5b289011 parent b18bce29457e15def7006c72f35257cefcb4e1f0 Author: falkTX <falktx@falktx.com> Date: Wed, 22 Sep 2021 15:49:19 +0100 Document 2 more macros Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | distrho/DistrhoInfo.hpp | | | 12 | ++++++++++++ |
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/distrho/DistrhoInfo.hpp b/distrho/DistrhoInfo.hpp @@ -655,6 +655,18 @@ START_NAMESPACE_DISTRHO #define DPF_VST_SHOW_PARAMETER_OUTPUTS /** + Disable all file browser related code.@n + Must be set as compiler macro when building DGL. (e.g. `CXXFLAGS="-DDGL_FILE_BROWSER_DISABLED"`) + */ +#define DGL_FILE_BROWSER_DISABLED + +/** + Disable resource files, like internally used fonts.@n + Must be set as compiler macro when building DGL. (e.g. `CXXFLAGS="-DDGL_NO_SHARED_RESOURCES"`) + */ +#define DGL_NO_SHARED_RESOURCES + +/** Whether to use OpenGL3 instead of the default OpenGL2 compatility profile. Under DPF makefiles this can be enabled by using `make USE_OPENGL3=true` on the dgl build step.