diff options
author | LaG1924 <lag1924@gmail.com> | 2021-11-19 20:09:45 +0100 |
---|---|---|
committer | LaG1924 <lag1924@gmail.com> | 2021-11-19 20:09:45 +0100 |
commit | b837000b88e34cf297380c99ea608a1517fdf26d (patch) | |
tree | 7ea1e1e389150cd8430b9a2fdc81e8a79c02b0fb /src/Gal.hpp | |
parent | Changed TextureAtlas to Gal (diff) | |
download | AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar.gz AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar.bz2 AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar.lz AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar.xz AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.tar.zst AltCraft-b837000b88e34cf297380c99ea608a1517fdf26d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Gal.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Gal.hpp b/src/Gal.hpp index 82ede78..f448c89 100644 --- a/src/Gal.hpp +++ b/src/Gal.hpp @@ -60,6 +60,7 @@ namespace Gal { }; enum class Format { + D24S8, R8G8B8, R8G8B8A8, }; @@ -241,6 +242,10 @@ namespace Gal { struct FramebufferConfig { virtual ~FramebufferConfig() = default; + + virtual void SetDepthStencil(std::shared_ptr<Texture> texture) = 0; + + virtual void SetTexture(size_t location, std::shared_ptr<Texture> texture) = 0; }; struct ShaderParameters { |