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

image_renderer.hpp « graphics - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aac47247ade1f345bdd1c8211a07a148544704cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "shape_renderer.hpp"
#include "defines.hpp"

namespace graphics
{
  class ImageRenderer : public ShapeRenderer
  {
  private:
  public:

    typedef ShapeRenderer base_t;

    ImageRenderer(base_t::Params const & p);

    void drawImage(math::Matrix<double, 3, 3> const & m,
                   uint32_t resID,
                   double depth);
  };
}