Browse Source

Doc++, to sync with Python bindings.

pull/617/head
Vladimír Vondruš 3 years ago
parent
commit
3e59bf23a1
  1. 4
      src/Magnum/Image.h
  2. 4
      src/Magnum/ImageView.h
  3. 4
      src/Magnum/Trade/ImageData.h

4
src/Magnum/Image.h

@ -456,7 +456,7 @@ template<UnsignedInt dimensions> 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<UnsignedInt dimensions> class Image {
Containers::StridedArrayView<dimensions + 1, const char> 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

4
src/Magnum/ImageView.h

@ -482,7 +482,7 @@ template<UnsignedInt dimensions, class T> class ImageView {
void setData(Containers::ArrayView<ErasedType> 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<UnsignedInt dimensions, class T> class ImageView {
Containers::StridedArrayView<dimensions + 1, Type> 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

4
src/Magnum/Trade/ImageData.h

@ -795,7 +795,7 @@ template<UnsignedInt dimensions> 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<UnsignedInt dimensions> class ImageData {
Containers::StridedArrayView<dimensions + 1, const char> 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

Loading…
Cancel
Save