summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/index_buffer.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-03-05 15:37:01 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-06 16:12:51 +0100
commitf13c2b86e427e29a856ca8f0f79379203c61f431 (patch)
treeb41fd7ab9d8d9b0e20caa31c161df684a844a3ae /src/mbgl/gl/index_buffer.hpp
parent2f646af255bf05bd50070deb83bb89e48509afc4 (diff)
downloadqtlocation-mapboxgl-f13c2b86e427e29a856ca8f0f79379203c61f431.tar.gz
[core] unify *Buffer/Vector naming
Diffstat (limited to 'src/mbgl/gl/index_buffer.hpp')
-rw-r--r--src/mbgl/gl/index_buffer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/index_buffer.hpp b/src/mbgl/gl/index_buffer.hpp
index a506c5eacd..3b66e2b69c 100644
--- a/src/mbgl/gl/index_buffer.hpp
+++ b/src/mbgl/gl/index_buffer.hpp
@@ -7,7 +7,7 @@ namespace gl {
class IndexBuffer {
public:
- std::size_t indexCount;
+ std::size_t elements;
UniqueBuffer buffer;
};