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>2017-02-17 18:25:08 +0300
committerSergey Yershov <syershov@maps.me>2017-02-17 18:33:50 +0300
commit325d595022107c965fffa8276276d062a48ea0a2 (patch)
tree80226c5b2c2e528e24e52d25b07e62634dd2b6c7 /drape/symbols_texture.cpp
parent009388f72e98d9eee5a3a2d44e734fcec2f68a7d (diff)
Upgraded stb lib, removed lodepngbeta-638
Diffstat (limited to 'drape/symbols_texture.cpp')
-rw-r--r--drape/symbols_texture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/symbols_texture.cpp b/drape/symbols_texture.cpp
index bc8dfd381d..4bdad9334f 100644
--- a/drape/symbols_texture.cpp
+++ b/drape/symbols_texture.cpp
@@ -157,7 +157,7 @@ void LoadSymbols(string const & skinPathName, bool convertToUV,
}
int w, h, bpp;
- unsigned char * data = stbi_png_load_from_memory(&rawData[0], static_cast<int>(rawData.size()), &w, &h, &bpp, 0);
+ unsigned char * data = stbi_load_from_memory(&rawData[0], static_cast<int>(rawData.size()), &w, &h, &bpp, 0);
ASSERT_EQUAL(bpp, 4, ("Incorrect symbols texture format"));
ASSERT(glm::isPowerOfTwo(w), (w));
ASSERT(glm::isPowerOfTwo(h), (h));