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

Unified Diff: webkit/common/gpu/webgraphicscontext3d_impl.cc

Issue 470973002: gpu: Remove WebGraphicsContext3D::makeContextCurrent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use scoped_ptr and remove unrelated changes. Created 6 years, 4 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
Index: webkit/common/gpu/webgraphicscontext3d_impl.cc
diff --git a/webkit/common/gpu/webgraphicscontext3d_impl.cc b/webkit/common/gpu/webgraphicscontext3d_impl.cc
index abf9d954b8c5c71cb13cd5f1ec611cf6f85cd6b1..d8fd01897e5c1b7c7ba6ff08aebf0dbf04964032 100644
--- a/webkit/common/gpu/webgraphicscontext3d_impl.cc
+++ b/webkit/common/gpu/webgraphicscontext3d_impl.cc
@@ -170,6 +170,10 @@ void WebGraphicsContext3DImpl::synthesizeGLError(WGC3Denum error) {
}
}
+bool WebGraphicsContext3DImpl::makeContextCurrent() {
+ return true;
+}
+
uint32_t WebGraphicsContext3DImpl::lastFlushID() {
return flush_id_;
}
@@ -937,7 +941,6 @@ DELEGATE_TO_GL_5(renderbufferStorageMultisampleEXT,
WGC3Denum, WGC3Dsizei, WGC3Dsizei)
GrGLInterface* WebGraphicsContext3DImpl::createGrGLInterface() {
- makeContextCurrent();
return skia_bindings::CreateCommandBufferSkiaGLBinding();
}

Powered by Google App Engine
This is Rietveld 408576698