Welcome to mirror list, hosted at ThFree Co, Russian Federation.

benchmark_render_policy_mt.hpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e2a7266ce9181762f81e380c5adc66c36ac3ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "render_policy_mt.hpp"

class BenchmarkRenderPolicyMT : public RenderPolicyMT
{
public:
  BenchmarkRenderPolicyMT(shared_ptr<WindowHandle> const & wh,
                          RenderPolicy::TRenderFn const & renderFn);

  void Initialize(shared_ptr<yg::gl::RenderContext> const & rc,
                  shared_ptr<yg::ResourceManager> const & rm);

  void DrawFrame(shared_ptr<PaintEvent> const & e, ScreenBase const & s);
};