From f6256359c697c565c0e80663341671cc43a599e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 19 Oct 2023 13:03:05 +0200 Subject: [PATCH] Text: these directionality guarantees are too strong, remove. I don't want to restrict myself this much, especially given various tests don't hold onto these. --- src/Magnum/Text/Direction.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Magnum/Text/Direction.h b/src/Magnum/Text/Direction.h index 2d6fbcc3e..c4413161c 100644 --- a/src/Magnum/Text/Direction.h +++ b/src/Magnum/Text/Direction.h @@ -55,29 +55,29 @@ enum class ShapeDirection: UnsignedByte { /** * Left to right. When returned from @ref AbstractShaper::direction(), - * the @p advances filled by @ref AbstractShaper::glyphsInto() are - * guaranteed to have their Y components @cpp 0.0f @ce. + * the @p advances filled by @ref AbstractShaper::glyphsInto() have their Y + * components @cpp 0.0f @ce. */ LeftToRight = 1, /** * Right to left. When returned from @ref AbstractShaper::direction(), - * the @p advances filled by @ref AbstractShaper::glyphsInto() are - * guaranteed to have their Y components @cpp 0.0f @ce. + * the @p advances filled by @ref AbstractShaper::glyphsInto() have their Y + * components @cpp 0.0f @ce. */ RightToLeft, /** * Top to bottom. When returned from @ref AbstractShaper::direction(), - * the @p advances filled by @ref AbstractShaper::glyphsInto() are - * guaranteed to have their X components @cpp 0.0f @ce. + * the @p advances filled by @ref AbstractShaper::glyphsInto() have their X + * components @cpp 0.0f @ce. */ TopToBottom, /** * Bottom to top. When returned from @ref AbstractShaper::direction(), - * the @p advances filled by @ref AbstractShaper::glyphsInto() are - * guaranteed to have their X components @cpp 0.0f @ce. + * the @p advances filled by @ref AbstractShaper::glyphsInto() have their X + * components @cpp 0.0f @ce. */ BottomToTop };