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: 6baeccdfa8fbdfcd6c498ed63518a040b682203f (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 "graphics/shape_renderer.hpp"
#include "graphics/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);
  };
}