added load function to texture

This commit is contained in:
Steffen Fündgens 2014-11-06 19:20:13 +01:00
parent 9926ad9252
commit 8697bf000c
2 changed files with 4 additions and 0 deletions

View File

@ -13,3 +13,6 @@ Texture::~Texture() {
ACGL::OpenGL::SharedTexture2D Texture::getReference() {
return reference;
}
void Texture::load(){
}

View File

@ -12,6 +12,7 @@ class Texture{
Texture();
ACGL::OpenGL::SharedTexture2D getReference();
~Texture();
void load();
private:
ACGL::OpenGL::SharedTexture2D reference;
};