diff --git a/src/Magnum/AbstractTexture.cpp b/src/Magnum/AbstractTexture.cpp index efc6e42c6..3ce8a98c8 100644 --- a/src/Magnum/AbstractTexture.cpp +++ b/src/Magnum/AbstractTexture.cpp @@ -224,7 +224,7 @@ AbstractTexture::~AbstractTexture() { glDeleteTextures(1, &_id); } -inline void AbstractTexture::createIfNotAlready() { +void AbstractTexture::createIfNotAlready() { if(_flags & ObjectFlag::Created) return; /* glGen*() does not create the object, just reserves the name. Some