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

oglcontext.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d2ef6ed2cfd14cb605dc5eae399d95959e361ed (plain)
1
2
3
4
5
6
7
8
#pragma once

class OGLContext
{
public:
  virtual void present() = 0;
  virtual void makeCurrent() = 0;
};