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

Unified Diff: ui/gfx/gl/gl_interface.h

Issue 7564013: Roll skia to r2034 (and add new gl bindings) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « ui/gfx/gl/gl_bindings_skia_in_process.cc ('k') | webkit/glue/gl_bindings_skia_cmd_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/gl/gl_interface.h
===================================================================
--- ui/gfx/gl/gl_interface.h (revision 95237)
+++ ui/gfx/gl/gl_interface.h (working copy)
@@ -168,6 +168,10 @@
virtual void DrawArrays(GLenum mode, GLint first, GLsizei count) = 0;
+ virtual void DrawBuffer(GLenum mode) = 0;
+
+ virtual void DrawBuffersARB(GLsizei n, const GLenum* bufs) = 0;
+
virtual void DrawElements(GLenum mode,
GLsizei count,
GLenum type,
@@ -346,6 +350,8 @@
virtual void PolygonOffset(GLfloat factor, GLfloat units) = 0;
+ virtual void ReadBuffer(GLenum src) = 0;
+
virtual void ReadPixels(GLint x, GLint y,
GLsizei width, GLsizei height,
GLenum format,
« no previous file with comments | « ui/gfx/gl/gl_bindings_skia_in_process.cc ('k') | webkit/glue/gl_bindings_skia_cmd_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698