summaryrefslogtreecommitdiffstats
path: root/src/Rml.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Rml.hpp')
-rw-r--r--src/Rml.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Rml.hpp b/src/Rml.hpp
index edcdc8b..42203d4 100644
--- a/src/Rml.hpp
+++ b/src/Rml.hpp
@@ -7,6 +7,7 @@
#include <RmlUi/Core/FileInterface.h>
#include "Renderer.hpp"
+#include "Gal.hpp"
class AssetTreeNode;
@@ -32,7 +33,9 @@ public:
class RmlRenderInterface : public Rml::RenderInterface {
RenderState* State;
- GLuint Vao, Vbo, Ebo;
+ std::shared_ptr<Gal::Pipeline> pipeline, texPipeline;
+ std::shared_ptr<Gal::PipelineInstance> pipelineInstance, texPipelineInstance;
+ std::shared_ptr<Gal::Buffer> vertexBuffer, indexBuffer;
unsigned int vpWidth, vpHeight;
public: