Skip to content

Commit

Permalink
CBaseTexture: Removed parameter for SetMipmapping
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfryd authored and popcornmix committed Dec 4, 2015
1 parent 4997e5e commit 4445261
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions xbmc/guilib/Texture.cpp
Expand Up @@ -443,9 +443,9 @@ bool CBaseTexture::HasAlpha() const
return m_hasAlpha;
}

void CBaseTexture::SetMipmapping(bool mipmapping)
void CBaseTexture::SetMipmapping()
{
m_mipmapping = mipmapping;
m_mipmapping = true;
}

bool CBaseTexture::IsMipmapped() const
Expand Down
2 changes: 1 addition & 1 deletion xbmc/guilib/Texture.h
Expand Up @@ -75,7 +75,7 @@ class CBaseTexture

bool HasAlpha() const;

void SetMipmapping(bool mipmapping);
void SetMipmapping();
bool IsMipmapped() const;

virtual void CreateTextureObject() = 0;
Expand Down

0 comments on commit 4445261

Please sign in to comment.