Browse Source

Removed long-deprecated CubeMapTexture::imageSize() taking a face.

Use the version that takes just level instead.
pull/231/head
Vladimír Vondruš 8 years ago
parent
commit
0eb4a2d778
  1. 10
      src/Magnum/CubeMapTexture.h

10
src/Magnum/CubeMapTexture.h

@ -516,16 +516,6 @@ class MAGNUM_EXPORT CubeMapTexture: public AbstractTexture {
* WebGL.
*/
Vector2i imageSize(Int level);
#ifdef MAGNUM_BUILD_DEPRECATED
/**
* @brief @copybrief imageSize()
* @deprecated Use @ref imageSize(Int) instead.
*/
CORRADE_DEPRECATED("use imageSize(Int) instead") Vector2i imageSize(CubeMapCoordinate, Int level) {
return imageSize(level);
}
#endif
#endif
#ifndef MAGNUM_TARGET_GLES

Loading…
Cancel
Save