Browse Source

This function is used also outside of this file.

I'm not sure why this fails only in the CI.
pull/107/head
Vladimír Vondruš 11 years ago
parent
commit
aa9981f205
  1. 2
      src/Magnum/AbstractTexture.cpp

2
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

Loading…
Cancel
Save