From 3e59bf23a15cd21793dce21c886feb2bbeeb22f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 16 Mar 2023 22:21:23 +0100 Subject: [PATCH] Doc++, to sync with Python bindings. --- src/Magnum/Image.h | 4 ++-- src/Magnum/ImageView.h | 4 ++-- src/Magnum/Trade/ImageData.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Magnum/Image.h b/src/Magnum/Image.h index 724a8bf98..8fbed0cce 100644 --- a/src/Magnum/Image.h +++ b/src/Magnum/Image.h @@ -456,7 +456,7 @@ template class Image { #endif /** - * @brief View on pixel data + * @brief Pixel data * @m_since{2019,10} * * Provides direct and easy-to-use access to image pixels. See @@ -466,7 +466,7 @@ template class Image { Containers::StridedArrayView pixels() const; /**< @overload */ /** - * @brief View on pixel data with a concrete pixel type + * @brief Pixel data in a concrete type * @m_since{2019,10} * * Compared to non-templated @ref pixels() in addition casts the pixel diff --git a/src/Magnum/ImageView.h b/src/Magnum/ImageView.h index c7c8cd0cf..ef0f63a70 100644 --- a/src/Magnum/ImageView.h +++ b/src/Magnum/ImageView.h @@ -482,7 +482,7 @@ template class ImageView { void setData(Containers::ArrayView data); /** - * @brief View on pixel data + * @brief Pixel data * @m_since{2019,10} * * Provides direct and easy-to-use access to image pixels. See @@ -493,7 +493,7 @@ template class ImageView { Containers::StridedArrayView pixels() const; /** - * @brief View on pixel data with a concrete pixel type + * @brief Pixel data in a concrete type * @m_since{2019,10} * * Compared to non-templated @ref pixels() in addition casts the pixel diff --git a/src/Magnum/Trade/ImageData.h b/src/Magnum/Trade/ImageData.h index beb6cbcc1..63256d033 100644 --- a/src/Magnum/Trade/ImageData.h +++ b/src/Magnum/Trade/ImageData.h @@ -795,7 +795,7 @@ template class ImageData { #endif /** - * @brief View on pixel data + * @brief Pixel data * @m_since{2019,10} * * Provides direct and easy-to-use access to image pixels. Expects that @@ -809,7 +809,7 @@ template class ImageData { Containers::StridedArrayView pixels() const; /** - * @brief Mutable view on pixel data + * @brief Mutable pixel data * @m_since{2020,06} * * Like @ref pixels() const, but returns a non-const view. Expects that