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>2016-04-08 18:14:08 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2016-04-08 18:14:08 +0300
commita3c44d734dbf98e378153e8d6f48f3c8629c166d (patch)
treef8dc3f61b69f91d1ba52a5246dba4a68acf6bf8e /drape/texture.hpp
parentdff324286469b406e7a36c55a35b22db22ac3034 (diff)
Review fixes
Diffstat (limited to 'drape/texture.hpp')
-rw-r--r--drape/texture.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/texture.hpp b/drape/texture.hpp
index b59834920b..83d9e26c1f 100644
--- a/drape/texture.hpp
+++ b/drape/texture.hpp
@@ -51,7 +51,7 @@ public:
virtual ref_ptr<ResourceInfo> FindResource(Key const & key, bool & newResource) = 0;
virtual void UpdateState() {}
virtual bool HasAsyncRoutines() const { return false; }
- virtual bool IsFull(uint32_t newKeysCount) const { return false; }
+ virtual bool HasEnoughSpace(uint32_t newKeysCount) const { return true; }
using Params = HWTexture::Params;