summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/index_buffer.hpp
blob: a506c5eacd09804264bb5d56a63fa6c40b77a7e1 (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 indexCount;
    UniqueBuffer buffer;
};

} // namespace gl
} // namespace mbgl