Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Unified Diff: gles/real_gles2_interface.cc

Issue 3599002: wm: Add two pass rendering to OpenGL|ES backend. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/window_manager.git
Patch Set: final. Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gles/real_gles2_interface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gles/real_gles2_interface.cc
diff --git a/gles/real_gles2_interface.cc b/gles/real_gles2_interface.cc
index 954d169e539c553b756364545f31b9a497ae3cd6..1c5696c138d1843cc35dcc6e1b1b2e23e89badd8 100644
--- a/gles/real_gles2_interface.cc
+++ b/gles/real_gles2_interface.cc
@@ -249,6 +249,11 @@ void RealGles2Interface::DeleteTextures(GLsizei n, const GLuint* textures) {
GLES2_DCHECK_ERROR();
}
+void RealGles2Interface::DepthMask(GLboolean flag) {
+ glDepthMask(flag);
+ GLES2_DCHECK_ERROR();
+}
+
void RealGles2Interface::Disable(GLenum cap) {
glDisable(cap);
GLES2_DCHECK_ERROR();
« no previous file with comments | « gles/real_gles2_interface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698