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:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2018-08-15 15:53:42 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-08-17 13:11:53 +0300
commit5ab189afac15e9e97aef702e69e0d883bc8532b9 (patch)
treea6f705150dff1cfa2e63616c8a77f03bafe69ce6 /drape/oglcontext.hpp
parentd4673530fedab33c81e0a5453c43001a2b4ac983 (diff)
Framebuffer and render state refactoring.
Diffstat (limited to 'drape/oglcontext.hpp')
-rw-r--r--drape/oglcontext.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/drape/oglcontext.hpp b/drape/oglcontext.hpp
index 4d6aa91fda..129e76c09b 100644
--- a/drape/oglcontext.hpp
+++ b/drape/oglcontext.hpp
@@ -11,5 +11,11 @@ public:
void SetClearColor(dp::Color const & color) override;
void Clear(uint32_t clearBits) override;
void Flush() override;
+ void SetDepthTestEnabled(bool enabled) override;
+ void SetDepthTestFunction(TestFunction depthFunction) override;
+ void SetStencilTestEnabled(bool enabled) override;
+ void SetStencilFunction(StencilFace face, TestFunction stencilFunction) override;
+ void SetStencilActions(StencilFace face, StencilAction stencilFailAction, StencilAction depthFailAction,
+ StencilAction passAction) override;
};
} // namespace dp