diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 13:01:07 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 13:01:14 +0100 |
commit | 63bce3dd21c82e2b4e45c07934d5a26684cdaa93 (patch) | |
tree | a46da0cb575fa21add7b07f2784c7889e4bc2771 /src/crepe/api/Texture.h | |
parent | 2a2a3391ff0b449602825c3182af33c2ff52abc0 (diff) | |
parent | 85aa57e33d493502b05984ce44db6c68f627a6f2 (diff) |
merge `master`
Diffstat (limited to 'src/crepe/api/Texture.h')
-rw-r--r-- | src/crepe/api/Texture.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crepe/api/Texture.h b/src/crepe/api/Texture.h index b4f7d07..7206a66 100644 --- a/src/crepe/api/Texture.h +++ b/src/crepe/api/Texture.h @@ -36,6 +36,11 @@ public: ~Texture(); // FIXME: this constructor shouldn't be necessary because this class doesn't manage memory + Texture(Texture && other) noexcept; + Texture & operator=(Texture && other) noexcept; + Texture(const Texture &) = delete; + Texture & operator=(const Texture &) = delete; + /** * \brief Gets the width of the texture. * \return Width of the texture in pixels. |