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

Unified Diff: cc/test/test_web_graphics_context_3d.h

Issue 255713008: Change glimage to accept a type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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.h
diff --git a/cc/test/test_web_graphics_context_3d.h b/cc/test/test_web_graphics_context_3d.h
index 56ffc85d55f5b590c78ffd6cfd6d3430bb9d3b4a..ae32a273f1792eb8a16c7b74a37d4ad16264b171 100644
--- a/cc/test/test_web_graphics_context_3d.h
+++ b/cc/test/test_web_graphics_context_3d.h
@@ -234,12 +234,13 @@ class TestWebGraphicsContext3D {
virtual GLuint createImageCHROMIUM(GLsizei width,
GLsizei height,
- GLenum internalformat);
+ GLenum internalformat,
+ GLenum usage);
virtual void destroyImageCHROMIUM(GLuint image_id);
virtual void getImageParameterivCHROMIUM(GLuint image_id,
GLenum pname,
GLint* params);
- virtual void* mapImageCHROMIUM(GLuint image_id, GLenum access);
+ virtual void* mapImageCHROMIUM(GLuint image_id);
virtual void unmapImageCHROMIUM(GLuint image_id);
virtual void texImageIOSurface2DCHROMIUM(GLenum target,
GLsizei width,

Powered by Google App Engine
This is Rietveld 408576698