Browse Source

Doc++

findsdl-include-root
Vladimír Vondruš 7 years ago
parent
commit
bc7fff792c
  1. 4
      src/Magnum/Image.h
  2. 4
      src/Magnum/Trade/ImageData.h

4
src/Magnum/Image.h

@ -359,7 +359,7 @@ template<UnsignedInt dimensions> class Image {
std::pair<VectorTypeFor<dimensions, std::size_t>, VectorTypeFor<dimensions, std::size_t>> dataProperties() const;
/**
* @brief Raw data
* @brief Image data
*
* @see @ref release(), @ref pixels()
*/
@ -369,7 +369,7 @@ template<UnsignedInt dimensions> class Image {
Containers::ArrayView<const char> data() const & { return _data; }
/**
* @brief Raw data from a r-value
* @brief Image data from a r-value
*
* Unlike @ref data(), which returns a view, this is equivalent to
* @ref release() to avoid a dangling view when the temporary instance

4
src/Magnum/Trade/ImageData.h

@ -334,7 +334,7 @@ template<UnsignedInt dimensions> class ImageData {
needless state changes -- thus the calculation can't be done */
/**
* @brief Raw data
* @brief Image data
*
* @see @ref release(), @ref pixels()
*/
@ -344,7 +344,7 @@ template<UnsignedInt dimensions> class ImageData {
Containers::ArrayView<const char> data() const & { return _data; }
/**
* @brief Raw data from a r-value
* @brief Image data from a r-value
*
* Unlike @ref data(), which returns a view, this is equivalent to
* @ref release() to avoid a dangling view when the temporary instance

Loading…
Cancel
Save