From 704de3d1d287960c23e91ff0603858379e7dc416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 13 Nov 2024 02:42:20 +0100 Subject: [PATCH] SceneTools: doc++ --- src/Magnum/SceneTools/Filter.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Magnum/SceneTools/Filter.h b/src/Magnum/SceneTools/Filter.h index 7c2ba23d7..88f04550f 100644 --- a/src/Magnum/SceneTools/Filter.h +++ b/src/Magnum/SceneTools/Filter.h @@ -49,6 +49,7 @@ for which the corresponding bit in @p fieldsToKeep was set. The size of This function only operates on the field metadata --- if you'd like to have the data repacked to contain just the remaining fields as well, pass the output to @ref combineFields(const Trade::SceneData&). +@see @ref reference(), @ref filterOnlyFields(), @ref filterExceptFields() */ MAGNUM_SCENETOOLS_EXPORT Trade::SceneData filterFields(const Trade::SceneData& scene, Containers::BitArrayView fieldsToKeep); @@ -76,6 +77,7 @@ field was listed just once. This function only operates on the field metadata --- if you'd like to have the data repacked to contain just the remaining fields as well, pass the output to @ref combineFields(const Trade::SceneData&). +@see @ref reference(), @ref filterFields(), @ref filterExceptFields() */ MAGNUM_SCENETOOLS_EXPORT Trade::SceneData filterOnlyFields(const Trade::SceneData& scene, Containers::ArrayView fields); @@ -115,6 +117,7 @@ fields was listed just once. This function only operates on the field metadata --- if you'd like to have the data repacked to contain just the remaining fields as well, pass the output to @ref combineFields(const Trade::SceneData&). +@see @ref reference(), @ref filterFields(), @ref filterOnlyFields() */ MAGNUM_SCENETOOLS_EXPORT Trade::SceneData filterExceptFields(const Trade::SceneData& scene, Containers::ArrayView fields);