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>2011-09-22 19:58:39 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:24:16 +0300
commita032f7e6b612e2f1ad0d774067fbb973091897ad (patch)
tree0112898798f6189c27a71c97df3d45323a181d26 /iphone/Maps/Classes/EAGLView.h
parent11c675cd56f1ac7ddef3414bd000575fe2fd9cd9 (diff)
introduced VideoTimer, refactored rendering loop to use Timers, as on iOS.
Diffstat (limited to 'iphone/Maps/Classes/EAGLView.h')
-rw-r--r--iphone/Maps/Classes/EAGLView.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/EAGLView.h b/iphone/Maps/Classes/EAGLView.h
index af17102255..873874a650 100644
--- a/iphone/Maps/Classes/EAGLView.h
+++ b/iphone/Maps/Classes/EAGLView.h
@@ -34,12 +34,11 @@ namespace yg
shared_ptr<iphone::RenderContext> renderContext;
shared_ptr<iphone::RenderBuffer> renderBuffer;
shared_ptr<yg::gl::FrameBuffer> frameBuffer;
- shared_ptr<DrawerYG> drawer;
@public
shared_ptr<iphone::WindowHandle> windowHandle;
- shared_ptr<yg::ResourceManager> textureManager;
+ shared_ptr<DrawerYG> drawer;
MapViewController * controller;
}
@@ -50,6 +49,7 @@ namespace yg
@property (nonatomic, assign) CADisplayLink * displayLink;
@property (nonatomic, assign) MapViewController * controller;
@property (nonatomic, assign) shared_ptr<iphone::WindowHandle> windowHandle;
+@property (nonatomic, assign) shared_ptr<DrawerYG> drawer;
@property (nonatomic, assign) shared_ptr<iphone::RenderContext> renderContext;
@property (nonatomic, assign) shared_ptr<yg::ResourceManager> resourceManager;