aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/Texture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/Texture.cpp')
-rw-r--r--src/graphics/Texture.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/graphics/Texture.cpp b/src/graphics/Texture.cpp
index 794c563..86c4ac0 100644
--- a/src/graphics/Texture.cpp
+++ b/src/graphics/Texture.cpp
@@ -9,7 +9,22 @@ namespace mgl {
Texture::Texture(Texture &&other) {
memcpy(&texture, &other.texture, sizeof(mgl_texture));
+ owned = other.owned;
+
+ other.texture.id = 0;
+ other.owned = false;
+ }
+
+ Texture& Texture::operator=(Texture &&other) {
+ if(owned)
+ mgl_texture_unload(&texture);
+
+ memcpy(&texture, &other.texture, sizeof(mgl_texture));
+ owned = other.owned;
+
other.texture.id = 0;
+ other.owned = false;
+ return *this;
}
Texture::~Texture() {