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

Unified Diff: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h

Issue 2134793002: Remove the command buffer method glGetImageivCHROMIUM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge conflict. Created 4 years, 5 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/platform/graphics/Canvas2DLayerBridge.h
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
index 108e35fadd06d7f39814b2ec6933d7f9c365ca5a..d3214d2421830ebe94270fc4b71f6aacdab63133 100644
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h
@@ -154,7 +154,7 @@ private:
// All information associated with a CHROMIUM image.
struct ImageInfo {
ImageInfo() {}
- ImageInfo(GLuint imageId, GLuint textureId, GLint gpuMemoryBufferId);
+ ImageInfo(GLuint imageId, GLuint textureId);
// Whether this structure holds references to a CHROMIUM image.
bool empty();
@@ -164,9 +164,6 @@ private:
// The id of the texture bound to the CHROMIUM image.
GLuint m_textureId = 0;
-
- // The id of the GpuMemoryBuffer backing the texture and CHROMIUM image.
- GLint m_gpuMemoryBufferId = -1;
};
#endif // USE_IOSURFACE_FOR_2D_CANVAS

Powered by Google App Engine
This is Rietveld 408576698