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

Unified Diff: gpu/blink/webgraphicscontext3d_impl.cc

Issue 1027823003: Remove |level| in copy(Sub)TextureCHROMIUM(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: keep coding style Created 5 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
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/blink/webgraphicscontext3d_impl.cc
diff --git a/gpu/blink/webgraphicscontext3d_impl.cc b/gpu/blink/webgraphicscontext3d_impl.cc
index e469532efd65354298f960922cacada1a4d9fae1..fb34ab70cd47c20d2a4e6a4f6e1d88358815c3d1 100644
--- a/gpu/blink/webgraphicscontext3d_impl.cc
+++ b/gpu/blink/webgraphicscontext3d_impl.cc
@@ -826,24 +826,6 @@ DELEGATE_TO_GL_3(getQueryivEXT, GetQueryivEXT, WGC3Denum, WGC3Denum, WGC3Dint*)
DELEGATE_TO_GL_3(getQueryObjectuivEXT, GetQueryObjectuivEXT,
WebGLId, WGC3Denum, WGC3Duint*)
-void WebGraphicsContext3DImpl::copyTextureCHROMIUM(WGC3Denum target,
- WebGLId source_id,
- WebGLId dest_id,
- WGC3Dint level,
- WGC3Denum internal_format,
- WGC3Denum dest_type) {
- copyTextureCHROMIUM(target, source_id, dest_id, internal_format, dest_type);
-}
-
-void WebGraphicsContext3DImpl::copySubTextureCHROMIUM(WGC3Denum target,
- WebGLId source_id,
- WebGLId dest_id,
- WGC3Dint level,
- WGC3Dint xoffset,
- WGC3Dint yoffset) {
- copySubTextureCHROMIUM(target, source_id, dest_id, xoffset, yoffset);
-}
-
DELEGATE_TO_GL_5(copyTextureCHROMIUM,
CopyTextureCHROMIUM,
WGC3Denum,
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698