diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-26 08:47:49 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-26 08:47:49 -0500 |
commit | cd0236b94d5ecd2378518876820be201b9c635be (patch) | |
tree | 1cbe44dbf68f94c30f7f3cebce511ad7ce39ebac /include/Texture.h | |
parent | 26d71799f37bc325b6db0214268f4e72eb970ee9 (diff) |
c++'d texture loading
Diffstat (limited to 'include/Texture.h')
-rw-r--r-- | include/Texture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Texture.h b/include/Texture.h index c6376cb..659c32d 100644 --- a/include/Texture.h +++ b/include/Texture.h @@ -27,13 +27,13 @@ namespace Texture{ * later referencing of the texture. */ - GLuint loadTexture(const char *fileName); + GLuint loadTexture(std::string fileName); void freeTextures(void); void initColorIndex(); vec2 getIndex(Color c); - dim2 imageDim(const char *fileName); + dim2 imageDim(std::string fileName); } /** |