Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 15, 2014
1 parent c06b0ec commit 33c7001
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doomsday/libgui/src/graphics/modeldrawable.cpp
Expand Up @@ -1093,16 +1093,6 @@ bool ModelDrawable::nodeExists(String const &name) const
return d->nodeNameToPtr.contains(name);
}

void ModelDrawable::glInit()
{
d->glInit();
}

void ModelDrawable::glDeinit()
{
d->glDeinit();
}

void ModelDrawable::setAtlas(AtlasTexture &atlas)
{
d->atlas = &atlas;
Expand Down Expand Up @@ -1139,6 +1129,16 @@ void ModelDrawable::setDefaultTexture(TextureMap textureType, Id const &atlasId)
d->defaultTexIds[textureType] = atlasId;
}

void ModelDrawable::glInit()
{
d->glInit();
}

void ModelDrawable::glDeinit()
{
d->glDeinit();
}

int ModelDrawable::materialId(String const &name) const
{
return d->findMaterial(name);
Expand Down

0 comments on commit 33c7001

Please sign in to comment.