Skip to content

Commit

Permalink
GRAPHICS: Remove deprecated textureCoord2f function.
Browse files Browse the repository at this point in the history
  • Loading branch information
logzero committed Jan 17, 2013
1 parent ca05ff3 commit 8ace988
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions src/graphics/aurora/textureman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,19 +374,6 @@ void TextureManager::activeTexture(uint32 n) {
glActiveTextureARB(texture[n]);
}

void TextureManager::textureCoord2f(uint32 n, float u, float v) {
if (n >= ARRAYSIZE(texture))
return;

if (n == 0) {
glTexCoord2f(u, v);
return;
}

if (GfxMan.supportMultipleTextures())
glMultiTexCoord2fARB(texture[n], u, v);
}

} // End of namespace Aurora

} // End of namespace Graphics
1 change: 0 additions & 1 deletion src/graphics/aurora/textureman.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ class TextureManager : public Common::Singleton<TextureManager> {


void activeTexture(uint32 n);
void textureCoord2f(uint32 n, float u, float v);


private:
Expand Down

0 comments on commit 8ace988

Please sign in to comment.