summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/gl/context.cpp')
-rw-r--r--src/mbgl/gl/context.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mbgl/gl/context.cpp b/src/mbgl/gl/context.cpp
index 394f2cd0d7..b6a7bcc44c 100644
--- a/src/mbgl/gl/context.cpp
+++ b/src/mbgl/gl/context.cpp
@@ -870,5 +870,10 @@ void Context::visualizeDepthBuffer(const float depthRangeSize) {
#endif
+void Context::clearStencilBuffer(const int32_t bits) {
+ MBGL_CHECK_ERROR(glClearStencil(bits));
+ MBGL_CHECK_ERROR(glClear(GL_STENCIL_BUFFER_BIT));
+}
+
} // namespace gl
} // namespace mbgl