summaryrefslogtreecommitdiff
path: root/include/llmr/geometry/fill_buffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/llmr/geometry/fill_buffer.hpp')
-rw-r--r--include/llmr/geometry/fill_buffer.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/llmr/geometry/fill_buffer.hpp b/include/llmr/geometry/fill_buffer.hpp
index f413715042..90265b8b97 100644
--- a/include/llmr/geometry/fill_buffer.hpp
+++ b/include/llmr/geometry/fill_buffer.hpp
@@ -7,7 +7,6 @@
namespace llmr {
-
class FillVertexBuffer : public Buffer<
4 // bytes per coordinates (2 * unsigned short == 4 bytes)
> {
@@ -18,17 +17,6 @@ public:
void add(vertex_type x, vertex_type y);
};
-
-class FillElementsBuffer : public Buffer<
- 6, // bytes per triangle (3 * unsigned short == 6 bytes)
- GL_ELEMENT_ARRAY_BUFFER
-> {
-public:
- typedef uint16_t element_type;
-
- void add(element_type a, element_type b, element_type c);
-};
-
}
#endif