From 709931896df537a3bac0c8fe51136f91f7d1feb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 30 Oct 2020 19:50:53 +0100 Subject: [PATCH] ShaderTools: doc that optimization / debug info doesn't affect validation. --- src/Magnum/ShaderTools/AbstractConverter.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/ShaderTools/AbstractConverter.h b/src/Magnum/ShaderTools/AbstractConverter.h index df16ad36f..6b4eafc07 100644 --- a/src/Magnum/ShaderTools/AbstractConverter.h +++ b/src/Magnum/ShaderTools/AbstractConverter.h @@ -679,6 +679,8 @@ class MAGNUM_SHADERTOOLS_EXPORT AbstractConverter: public PluginManager::Abstrac * @ref convertFileToFile(), @ref convertFileToData(), * @ref linkDataToData(), @ref linkDataToFile(), @ref linkFilesToFile() * or @ref linkFilesToData() call will fail. + * + * Has no effect for @ref validateData() or @ref validateFile(). * @see @ref setDebugInfoLevel() */ void setOptimizationLevel(Containers::StringView level); @@ -692,6 +694,8 @@ class MAGNUM_SHADERTOOLS_EXPORT AbstractConverter: public PluginManager::Abstrac * @ref convertFileToFile(), @ref convertFileToData(), * @ref linkDataToData(), @ref linkDataToFile(), @ref linkFilesToFile() * or @ref linkFilesToData() call will fail. + * + * Has no effect for @ref validateData() or @ref validateFile(). * @see @ref setOptimizationLevel() */ void setDebugInfoLevel(Containers::StringView level);