Replaced some references to Image and Canvas with Texture.

This commit is contained in:
Alex Szpakowski
2020-02-04 20:52:57 -04:00
parent c3b77e0a92
commit b71eaf73cc
12 changed files with 47 additions and 50 deletions
+2 -2
View File
@@ -33,7 +33,7 @@
#include "common/Vector.h"
#include "font/Rasterizer.h"
#include "Image.h"
#include "Texture.h"
#include "vertex.h"
#include "Volatile.h"
@@ -217,7 +217,7 @@ private:
int textureWidth;
int textureHeight;
std::vector<StrongRef<love::graphics::Image>> images;
std::vector<StrongRef<love::graphics::Texture>> textures;
// maps glyphs to glyph texture information
std::unordered_map<uint32, Glyph> glyphs;