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

Unified Diff: gpu/blink/webgraphicscontext3d_impl.h

Issue 1203793003: Remove flip_y, premultiply_alpha, unmultiply_alpha support in command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 6 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/GLES2/extensions/CHROMIUM/CHROMIUM_flipy.txt ('k') | gpu/blink/webgraphicscontext3d_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/blink/webgraphicscontext3d_impl.h
diff --git a/gpu/blink/webgraphicscontext3d_impl.h b/gpu/blink/webgraphicscontext3d_impl.h
index aaa5e1f8b6f9cc62e989b09881a529b8b53a767f..f3d03d34a7472d921e60af2ab5f0318f19e5c01e 100644
--- a/gpu/blink/webgraphicscontext3d_impl.h
+++ b/gpu/blink/webgraphicscontext3d_impl.h
@@ -518,24 +518,6 @@ class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
blink::WGC3Denum pname,
blink::WGC3Duint* params);
- // TODO(zmo): Remove the following two functions when blink side switch
- // over to the correct version.
- void copyTextureCHROMIUM(blink::WGC3Denum target,
- blink::WebGLId source_id,
- blink::WebGLId dest_id,
- blink::WGC3Denum internal_format,
- blink::WGC3Denum dest_type);
-
- void copySubTextureCHROMIUM(blink::WGC3Denum target,
- blink::WebGLId source_id,
- blink::WebGLId dest_id,
- blink::WGC3Dint xoffset,
- blink::WGC3Dint yoffset,
- blink::WGC3Dint x,
- blink::WGC3Dint y,
- blink::WGC3Dsizei width,
- blink::WGC3Dsizei height);
-
void copyTextureCHROMIUM(
blink::WGC3Denum target,
blink::WebGLId source_id,
@@ -544,7 +526,7 @@ class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
blink::WGC3Denum dest_type,
blink::WGC3Dboolean unpack_flip_y,
blink::WGC3Dboolean unpack_premultiply_alpha,
- blink::WGC3Dboolean unpack_unmultiply_alpha);
+ blink::WGC3Dboolean unpack_unmultiply_alpha) override;
void copySubTextureCHROMIUM(
blink::WGC3Denum target,
@@ -558,7 +540,7 @@ class GPU_BLINK_EXPORT WebGraphicsContext3DImpl
blink::WGC3Dsizei height,
blink::WGC3Dboolean unpack_flip_y,
blink::WGC3Dboolean unpack_premultiply_alpha,
- blink::WGC3Dboolean unpack_unmultiply_alpha);
+ blink::WGC3Dboolean unpack_unmultiply_alpha) override;
virtual void bindUniformLocationCHROMIUM(blink::WebGLId program,
blink::WGC3Dint location,
« no previous file with comments | « gpu/GLES2/extensions/CHROMIUM/CHROMIUM_flipy.txt ('k') | gpu/blink/webgraphicscontext3d_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698