Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ACGL
acgl
Commits
76e195eb
Commit
76e195eb
authored
May 31, 2012
by
Robert Menzel
Browse files
added missing return
parent
c92868f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/ACGL/OpenGL/Controller/TextureControlFile.hh
View file @
76e195eb
...
...
@@ -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
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment