Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-10-22 12:50:20 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:19:16 +0300
commitff589eba4adc2b0eb96b5697b648af43a972defe (patch)
treea5a6d1d1b232693e43aee4b208847ed739ee6246 /drape/hw_texture_ios.mm
parentfff4914453006ded2762366d400caa4d3efd7fbe (diff)
Fixed black outline around icons
Diffstat (limited to 'drape/hw_texture_ios.mm')
-rw-r--r--drape/hw_texture_ios.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/drape/hw_texture_ios.mm b/drape/hw_texture_ios.mm
index 884c35e203..f3d1b57086 100644
--- a/drape/hw_texture_ios.mm
+++ b/drape/hw_texture_ios.mm
@@ -145,8 +145,8 @@ void HWTextureApple::Create(Params const & params, ref_ptr<void> data)
m_textureID = CVOpenGLESTextureGetName(m_texture);
GLFunctions::glBindTexture(m_textureID);
- GLFunctions::glTexParameter(gl_const::GLMinFilter, params.m_minFilter);
- GLFunctions::glTexParameter(gl_const::GLMagFilter, params.m_magFilter);
+ GLFunctions::glTexParameter(gl_const::GLMinFilter, params.m_filter);
+ GLFunctions::glTexParameter(gl_const::GLMagFilter, params.m_filter);
GLFunctions::glTexParameter(gl_const::GLWrapS, params.m_wrapSMode);
GLFunctions::glTexParameter(gl_const::GLWrapT, params.m_wrapTMode);