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:
authorrachytski <siarhei.rachytski@gmail.com>2012-12-18 14:40:30 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:48:04 +0300
commitc44578fca5db273e8b01e6bbc43dde188220337a (patch)
tree6e16bef373f5e5ee99fdca31af1bc8259175c249 /graphics/skin_loader.hpp
parent3e98f346b4515a41089ecfc216f839e837de3868 (diff)
refactored GeometryBatcher to derive it from PipelinesManager.
Diffstat (limited to 'graphics/skin_loader.hpp')
-rw-r--r--graphics/skin_loader.hpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/graphics/skin_loader.hpp b/graphics/skin_loader.hpp
index 096d3b9d4f..b51b2aec0a 100644
--- a/graphics/skin_loader.hpp
+++ b/graphics/skin_loader.hpp
@@ -1,16 +1,9 @@
/// @author Siarhei Rachytski
#pragma once
-//#include "resource_style.hpp"
-//#include "skin.hpp"
-//#include "../geometry/rect2d.hpp"
-//#include "../base/base.hpp"
-//#include "../std/string.hpp"
-//#include "../std/list.hpp"
-//#include "../std/map.hpp"
-//#include "../std/vector.hpp"
+#include "../geometry/rect2d.hpp"
+#include "../std/list.hpp"
#include "../std/shared_ptr.hpp"
-//#include "../std/utility.hpp"
/// @example
/// <?xml version="1.0" ?>
@@ -78,7 +71,6 @@ namespace graphics
TResourceList m_resourceList;
shared_ptr<ResourceManager> m_resourceManager;
- Skin * m_skin;
public:
@@ -97,6 +89,6 @@ namespace graphics
void pushResource();
void popResource();
- Skin * skin();
+ vector<shared_ptr<ResourceCache> > const & caches();
};
}