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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h

Issue 2702403005: debug-depth-video-with-copy-texture (Closed)
Patch Set: update cts expectations Created 3 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/WebGLRenderingContextBase.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
index fbde1a813b59e4f64d6382e24968e55d773221b6..a95309f000b3222e32ace77537b04ab109427601 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
@@ -1097,8 +1097,6 @@ class MODULES_EXPORT WebGLRenderingContextBase : public CanvasRenderingContext,
WebGLTexture*,
GLenum target,
GLint level,
- GLint internalformat,
- GLenum type,
GLint xoffset,
GLint yoffset,
GLint zoffset,
@@ -1641,14 +1639,18 @@ class MODULES_EXPORT WebGLRenderingContextBase : public CanvasRenderingContext,
unsigned);
void texImageCanvasByGPU(TexImageFunctionID,
HTMLCanvasElement*,
- GLuint,
- GLenum,
GLenum,
+ GLuint,
GLint,
GLint,
+ const IntRect&);
+ void texImageBitmapByGPU(ImageBitmap*,
+ GLenum,
+ GLuint,
+ bool,
+ GLint,
GLint,
- const IntRect& sourceSubRectangle);
- void texImageBitmapByGPU(ImageBitmap*, GLuint, GLenum, GLenum, GLint, bool);
+ const IntRect&);
sk_sp<SkImage> makeImageSnapshot(SkImageInfo&);
const unsigned m_version;

Powered by Google App Engine
This is Rietveld 408576698