From 8697bf000c3ad535657a9069d0404fd0bc477b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20F=C3=BCndgens?= Date: Thu, 6 Nov 2014 19:20:13 +0100 Subject: [PATCH] added load function to texture --- texture.cc | 3 +++ texture.hh | 1 + 2 files changed, 4 insertions(+) diff --git a/texture.cc b/texture.cc index 69aa5d0..561e0a3 100644 --- a/texture.cc +++ b/texture.cc @@ -13,3 +13,6 @@ Texture::~Texture() { ACGL::OpenGL::SharedTexture2D Texture::getReference() { return reference; } + +void Texture::load(){ +} diff --git a/texture.hh b/texture.hh index 3de1717..aebe098 100644 --- a/texture.hh +++ b/texture.hh @@ -12,6 +12,7 @@ class Texture{ Texture(); ACGL::OpenGL::SharedTexture2D getReference(); ~Texture(); + void load(); private: ACGL::OpenGL::SharedTexture2D reference; };