Browse Source

Fix function signature.

Apparently nobody ever called this function. Argh.
pull/233/head
Vladimír Vondruš 8 years ago
parent
commit
e69e81f16c
  1. 2
      src/Magnum/ImageView.h

2
src/Magnum/ImageView.h

@ -252,7 +252,7 @@ template<UnsignedInt dimensions> class CompressedImageView {
* @requires_gl Compressed pixel storage is hardcoded in OpenGL ES and
* WebGL.
*/
std::tuple<std::size_t, VectorTypeFor<dimensions, std::size_t>, std::size_t> dataProperties() const {
std::tuple<VectorTypeFor<dimensions, std::size_t>, VectorTypeFor<dimensions, std::size_t>, std::size_t> dataProperties() const {
return Implementation::compressedImageDataProperties<dimensions>(*this);
}
#endif

Loading…
Cancel
Save