diff options
Diffstat (limited to 'src/Rml.hpp')
-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: |