diff options
author | Hop311 <hop3114@gmail.com> | 2023-04-26 00:51:44 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-04-26 00:51:44 +0200 |
commit | 563834e7e6f9ce565bbfd553a0d9ff80a98c677d (patch) | |
tree | fcf86e6fac31430ba537a0d056e97f901ad76dd7 /extension/src/openvic2 | |
parent | 50327abf33078c44fef85c62ce3d90e23056fb34 (diff) |
Divide map texture to fit in 16384 GPU dim limit
Diffstat (limited to 'extension/src/openvic2')
-rw-r--r-- | extension/src/openvic2/Types.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extension/src/openvic2/Types.hpp b/extension/src/openvic2/Types.hpp index f53f842..98e92ce 100644 --- a/extension/src/openvic2/Types.hpp +++ b/extension/src/openvic2/Types.hpp @@ -22,6 +22,9 @@ namespace OpenVic2 { public: HasIdentifier(HasIdentifier const&) = delete; HasIdentifier(HasIdentifier&&) = default; + HasIdentifier& operator=(HasIdentifier const&) = delete; + HasIdentifier& operator=(HasIdentifier&&) = delete; + std::string const& get_identifier() const; }; |