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

Unified Diff: cc/test/test_web_graphics_context_3d.cc

Issue 962723002: Change CHROMIUM_image declarations to support multi planar input. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reveman@ comments and const-corrected function signatures. 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
Index: cc/test/test_web_graphics_context_3d.cc
diff --git a/cc/test/test_web_graphics_context_3d.cc b/cc/test/test_web_graphics_context_3d.cc
index 28b16c84936b653f725bf10700d1cff70e69bf49..e2339d5773a10571b63606d250b729d171b8f831 100644
--- a/cc/test/test_web_graphics_context_3d.cc
+++ b/cc/test/test_web_graphics_context_3d.cc
@@ -591,10 +591,11 @@ GLboolean TestWebGraphicsContext3D::unmapBufferCHROMIUM(
return true;
}
-GLuint TestWebGraphicsContext3D::createImageCHROMIUM(ClientBuffer buffer,
- GLsizei width,
- GLsizei height,
- GLenum internalformat) {
+GLuint TestWebGraphicsContext3D::createImageCHROMIUM(
+ const ClientBuffer* const buffers,
+ GLsizei width,
+ GLsizei height,
+ GLenum internalformat) {
DCHECK_EQ(GL_RGBA, static_cast<int>(internalformat));
GLuint image_id = NextImageId();
base::AutoLock lock(namespace_->lock);

Powered by Google App Engine
This is Rietveld 408576698