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

#include <cstdint>

namespace mbgl {

using UpdateType = uint32_t;

enum class Update : UpdateType {
    Nothing                   = 0,
    Dimensions                = 1 << 1,
    DefaultTransitionDuration = 1 << 2,
    Classes                   = 1 << 3,
    Zoom                      = 1 << 4,
    RenderStill               = 1 << 5,
};

}

#endif