summaryrefslogtreecommitdiffstats
path: root/src/Rml.hpp
diff options
context:
space:
mode:
authorLaG1924 <lag1924@gmail.com>2021-11-14 12:23:15 +0100
committerLaG1924 <lag1924@gmail.com>2021-11-14 12:23:15 +0100
commit5651b71788487e986ea945d76cbaf647d4554813 (patch)
treeefec4c9a455dd4911bbeefd9f8c593e36ee97973 /src/Rml.hpp
parentAdded basic Graphics Abstraction Layer (diff)
downloadAltCraft-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 'src/Rml.hpp')
-rw-r--r--src/Rml.hpp3
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: