|
|
|
|
@ -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 |
|
|
|
|
|