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

render_context.cpp « map_server - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51a29a4f7194130a09e9e5c28251af95757d1c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "map_server/render_context.hpp"

namespace srv
{
  RenderContext::RenderContext()
  {
  }

  void RenderContext::makeCurrent()
  {
  }

  RenderContext * RenderContext::createShared()
  {
    return new RenderContext();
  }
}