Skip to content
Snippets Groups Projects
Commit 76e195eb authored by Robert Menzel's avatar Robert Menzel
Browse files

added missing return

parent c92868f4
Branches
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ public:
inline TextureControlFile& minFilter (GLint _minFilter) { mMinFilter = _minFilter; return *this; }
inline TextureControlFile& magFilter (GLint _magFilter) { mMagFilter = _magFilter; return *this; }
inline TextureControlFile& anisotropicFilter (GLfloat _anisotropicFilter) { mAnisotropicFilter = _anisotropicFilter; return *this; }
inline TextureControlFile& internalFormat(GLenum _internalFormat) { mInternalFormat = _internalFormat; }
inline TextureControlFile& internalFormat(GLenum _internalFormat) { mInternalFormat = _internalFormat; return *this; }
inline TextureControlFile& wrap (GLenum _wrapS, GLenum _wrapT = 0, GLenum _wrapR = 0)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment