Renamed the internal OpenGL buffer class from VertexBuffer to GLBuffer.

This commit is contained in:
Alex Szpakowski
2015-03-03 02:21:28 -04:00
parent d7667ea8fc
commit 8277eb9abd
15 changed files with 135 additions and 140 deletions
+2 -2
View File
@@ -25,7 +25,7 @@
#include "common/config.h"
#include "graphics/Drawable.h"
#include "Font.h"
#include "VertexBuffer.h"
#include "GLBuffer.h"
namespace love
{
@@ -81,7 +81,7 @@ private:
void addTextData(const TextData &s);
StrongRef<Font> font;
VertexBuffer *vbo;
GLBuffer *vbo;
std::vector<Font::DrawCommand> draw_commands;