Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/packets_queue.hpp')
-rw-r--r--graphics/packets_queue.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/packets_queue.hpp b/graphics/packets_queue.hpp
index ed4c6a4455..85a2849b6c 100644
--- a/graphics/packets_queue.hpp
+++ b/graphics/packets_queue.hpp
@@ -1,5 +1,7 @@
#pragma once
+#include "uniforms_holder.hpp"
+
#include "../base/fence_manager.hpp"
#include "../base/threaded_list.hpp"
@@ -26,8 +28,12 @@ namespace graphics
bool isDebugging() const;
void setIsDebugging(bool flag);
+ virtual bool isNeedAdditionalUniforms() const { return false; }
+ virtual void setAdditionalUniforms(UniformsHolder const & /*uniforms*/) {}
+
void setRenderContext(RenderContext * ctx);
RenderContext * renderContext();
+ RenderContext const * renderContext() const;
Command();