aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Texture.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-28 08:21:24 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-28 08:21:24 +0100
commit80836bce1294898f3d115ed363edd6d921aa15d5 (patch)
tree3cd36d3dd9bfe016d6056b53b4f18c3355b7edb2 /src/crepe/api/Texture.cpp
parent43695ecee65d63ba89bdab3eb49b5ada0eef399f (diff)
adjusted texture and sprite to hold a texture, instead of reference
Diffstat (limited to 'src/crepe/api/Texture.cpp')
-rw-r--r--src/crepe/api/Texture.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/crepe/api/Texture.cpp b/src/crepe/api/Texture.cpp
index eeb86e9..576bdc3 100644
--- a/src/crepe/api/Texture.cpp
+++ b/src/crepe/api/Texture.cpp
@@ -17,6 +17,17 @@ Texture::~Texture() {
this->texture.reset();
}
+Texture::Texture(Texture&& other) noexcept
+ : texture(std::move(other.texture)){
+}
+
+Texture& Texture::operator=(Texture&& other) noexcept {
+ if (this != &other) {
+ texture = std::move(other.texture);
+ }
+ return *this;
+}
+
void Texture::load(const Asset & res) {
SDLContext & ctx = SDLContext::get_instance();
this->texture = ctx.texture_from_path(res.get_path());