diff options
author | LaG1924 <lag1924@gmail.com> | 2021-11-14 12:23:15 +0100 |
---|---|---|
committer | LaG1924 <lag1924@gmail.com> | 2021-11-14 12:23:15 +0100 |
commit | 5651b71788487e986ea945d76cbaf647d4554813 (patch) | |
tree | efec4c9a455dd4911bbeefd9f8c593e36ee97973 /src/Rml.hpp | |
parent | Added basic Graphics Abstraction Layer (diff) | |
download | AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar.gz AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar.bz2 AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar.lz AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar.xz AltCraft-5651b71788487e986ea945d76cbaf647d4554813.tar.zst AltCraft-5651b71788487e986ea945d76cbaf647d4554813.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Rml.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Rml.hpp b/src/Rml.hpp index 42203d4..9aa6be0 100644 --- a/src/Rml.hpp +++ b/src/Rml.hpp @@ -31,11 +31,10 @@ public: }; class RmlRenderInterface : public Rml::RenderInterface { - RenderState* State; - std::shared_ptr<Gal::Pipeline> pipeline, texPipeline; std::shared_ptr<Gal::PipelineInstance> pipelineInstance, texPipelineInstance; std::shared_ptr<Gal::Buffer> vertexBuffer, indexBuffer; + std::map<size_t, std::shared_ptr<Gal::Texture>> textures; unsigned int vpWidth, vpHeight; public: |