summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/index_buffer.hpp
blob: 3b66e2b69c46f47354fb706411aadd660f4cbff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <mbgl/gl/object.hpp>

namespace mbgl {
namespace gl {

class IndexBuffer {
public:
    std::size_t elements;
    UniqueBuffer buffer;
};

} // namespace gl
} // namespace mbgl