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

namespace mbgl {

using UpdateType = uint32_t;

enum class Update : UpdateType {
    Nothing                   = 0,
    StyleInfo                 = 1 << 0,
    Debug                     = 1 << 1,
    DefaultTransitionDuration = 1 << 2,
    Classes                   = 1 << 3,
};

}

#endif