summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/collision_box_buffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/geometry/collision_box_buffer.hpp')
-rw-r--r--src/mbgl/geometry/collision_box_buffer.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mbgl/geometry/collision_box_buffer.hpp b/src/mbgl/geometry/collision_box_buffer.hpp
deleted file mode 100644
index 5360ac3f4c..0000000000
--- a/src/mbgl/geometry/collision_box_buffer.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <mbgl/geometry/buffer.hpp>
-#include <array>
-
-namespace mbgl {
-
-class CollisionBoxVertexBuffer : public Buffer <
- 12,
- gl::BufferType::Vertex,
- 32768
-> {
-public:
- typedef int16_t vertex_type;
-
- uint32_t add(int16_t x, int16_t y, float ex, float ey, float maxzoom, float placementZoom);
-};
-
-
-} // namespace mbgl