summaryrefslogtreecommitdiff
path: root/tools/shell/fps_widget.hpp
blob: 88fc494a1f6769e28b83cf59ad72093f53076e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "widget.hpp"

namespace mbgl {
namespace shell {

class FPSWidget final : public Widget {
public:
    FPSWidget(Window &window);

protected:
    void render() override;
};

} // namespace shell
} // namespace mbgl