/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
drape_frontend/gui/compass.hpp
16 строк
438 B
r.kuznetsov
[drape][metal] Refactored vertex array buffer and context usage.
25 сен 2018, 12:33
25 сен 2018, 12:33
f46b9a3
Код
Авторство
О чём код?
#pragma once #include "drape_frontend/gui/shape.hpp" namespace gui { class Compass : public Shape { public: explicit Compass(gui::Position const & position) : Shape(position) {} drape_ptr<ShapeRenderer> Draw(ref_ptr<dp::GraphicsContext> context, m2::PointF & compassSize, ref_ptr<dp::TextureManager> tex, TTapHandler const & tapHandler) const; }; } // namespace gui