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:
authorExMix <rahuba.youri@mapswithme.com>2014-12-11 12:02:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:34:52 +0300
commit327514dcc366c09fa10fe9d04e2e3e3c7c8c18bf (patch)
tree721e18b152827b432c1d3ebad8f1b08ed80587ef /drape/stipple_pen_resource.cpp
parent270c4915615e8e74c9605616f469a8e5c3b971a3 (diff)
[drape] not hardcoded texture filtration using
Diffstat (limited to 'drape/stipple_pen_resource.cpp')
-rw-r--r--drape/stipple_pen_resource.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/drape/stipple_pen_resource.cpp b/drape/stipple_pen_resource.cpp
index 3ec2a980e0..36a2e4d391 100644
--- a/drape/stipple_pen_resource.cpp
+++ b/drape/stipple_pen_resource.cpp
@@ -231,6 +231,16 @@ void StipplePenIndex::UploadResources(RefPointer<Texture> texture)
m_pendingNodes.clear();
}
+glConst StipplePenIndex::GetMinFilter() const
+{
+ return gl_const::GLNearest;
+}
+
+glConst StipplePenIndex::GetMagFilter() const
+{
+ return gl_const::GLNearest;
+}
+
string DebugPrint(StipplePenHandle const & key)
{
ostringstream out;