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

Unified Diff: gpu/blink/webgraphicscontext3d_impl.cc

Issue 972833004: Revert of gpu: introduce glCopySubTextureCHROMIUM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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') | gpu/command_buffer/build_gles2_cmd_buffer.py » ('j') | 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 3763b5de3515a689d8fb16270b4e35c49641ab8d..4f728cfd62506d6d910476c4d1e9778255a08edf 100644
--- a/gpu/blink/webgraphicscontext3d_impl.cc
+++ b/gpu/blink/webgraphicscontext3d_impl.cc
@@ -809,39 +809,8 @@
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,
- WebGLId,
- WebGLId,
- WGC3Denum,
- WGC3Denum);
-
-DELEGATE_TO_GL_5(copySubTextureCHROMIUM,
- CopySubTextureCHROMIUM,
- WGC3Denum,
- WebGLId,
- WebGLId,
- WGC3Dint,
- WGC3Dint);
+DELEGATE_TO_GL_6(copyTextureCHROMIUM, CopyTextureCHROMIUM, WGC3Denum,
+ WebGLId, WebGLId, WGC3Dint, WGC3Denum, WGC3Denum);
DELEGATE_TO_GL_3(bindUniformLocationCHROMIUM, BindUniformLocationCHROMIUM,
WebGLId, WGC3Dint, const WGC3Dchar*)
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.h ('k') | gpu/command_buffer/build_gles2_cmd_buffer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698