aboutsummaryrefslogtreecommitdiffstats
path: root/include/Texture.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-02-26 08:47:49 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-02-26 08:47:49 -0500
commitcd0236b94d5ecd2378518876820be201b9c635be (patch)
tree1cbe44dbf68f94c30f7f3cebce511ad7ce39ebac /include/Texture.h
parent26d71799f37bc325b6db0214268f4e72eb970ee9 (diff)
c++'d texture loading
Diffstat (limited to 'include/Texture.h')
-rw-r--r--include/Texture.h4
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);
}
/**