summaryrefslogtreecommitdiff
path: root/include/mbgl/map/mode.hpp
blob: 3e838dca991931fc5702a4ce33269ba3a6f0ca73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MBGL_MAP_MODE
#define MBGL_MAP_MODE

#include <cstdint>

namespace mbgl {

enum class MapMode : uint8_t {
    Continuous, // continually updating map
    Still, // a once-off still image
};

enum class GLContextMode : uint8_t {
    Unique,
    Shared,
};

} // namespace mbgl

#endif // MBGL_MAP_MODE