Skip to content

Commit aa31479

Browse files
committed
added some references
1 parent ecd36d9 commit aa31479

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Core/Texture.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ void Texture::UpdateData(GLint format, int width, int height,
6464
}
6565

6666
void Texture::UseAntiAliasing(bool useAA) {
67+
/**
68+
* additional docs
69+
* https://www.khronos.org/opengl/wiki/Texture
70+
* https://www.khronos.org/opengl/wiki/Sampler_Object#Sampling_parameters
71+
*/
6772
if (useAA) {
6873
m_MinFilter = GL_LINEAR_MIPMAP_LINEAR;
6974
m_MagFilter = GL_LINEAR;

0 commit comments

Comments
 (0)