summaryrefslogtreecommitdiff
path: root/src/mbgl/gfx/types.hpp
blob: ea7b2da5dccda9b2af66c153b4f0c58ad47f668f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <cstdint>

namespace mbgl {
namespace gfx {

enum class PrimitiveType : uint8_t {
    Points,
    Lines,
    LineLoop,
    LineStrip,
    Triangles,
    TriangleStrip,
    TriangleFan
};

} // namespace gfx
} // namespace mbgl