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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp

Issue 1815803003: Move simple methods [T-Z] from WebGraphicsContext3D to GLES2Interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simples-fplus
Patch Set: simples-tplus: fixed Created 4 years, 9 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: third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp b/third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp
index 5c862adaf02071084c2ecccac70cc8d259022d1b..e71d4e6895bc5bf01a6cc8264d3c63bd059721ef 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderbuffer.cpp
@@ -50,7 +50,7 @@ WebGLRenderbuffer::WebGLRenderbuffer(WebGLRenderingContextBase* ctx)
setObject(ctx->webContext()->createRenderbuffer());
}
-void WebGLRenderbuffer::deleteObjectImpl(WebGraphicsContext3D* context3d)
+void WebGLRenderbuffer::deleteObjectImpl(WebGraphicsContext3D* context3d, gpu::gles2::GLES2Interface* gl)
{
context3d->deleteRenderbuffer(m_object);
m_object = 0;

Powered by Google App Engine
This is Rietveld 408576698