diff options
Diffstat (limited to '')
-rw-r--r-- | src/Gal.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Gal.hpp b/src/Gal.hpp index 234e49a..8d7394a 100644 --- a/src/Gal.hpp +++ b/src/Gal.hpp @@ -158,6 +158,8 @@ namespace Gal { virtual void SetWrapping(Wrapping wrapping) = 0; + virtual void SetLinear(bool isLinear) = 0; + }; struct Texture { @@ -261,6 +263,7 @@ namespace Gal { template<typename T> void Resize() { Resize(sizeof(T)); + *Get<T>() = T{}; } virtual std::byte* GetDataPtr() = 0; |