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

Unified Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

Issue 2646243002: Use IDCompositionSurface to implement DirectCompositionSurfaceWin. (Closed)
Patch Set: better Created 3 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: gpu/command_buffer/client/gles2_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index e9d0e761a2115346de3cf217e34ad1badd202fcd..48b054facee0bc15519cad2d96630ed148ce4401 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1730,6 +1730,12 @@ void GL_APIENTRY GLES2SwapBuffersWithDamageCHROMIUM(GLint x,
GLint height) {
gles2::GetGLContext()->SwapBuffersWithDamageCHROMIUM(x, y, width, height);
}
+void GL_APIENTRY GLES2SetDrawRectangleCHROMIUM(GLint x,
+ GLint y,
+ GLint width,
+ GLint height) {
+ gles2::GetGLContext()->SetDrawRectangleCHROMIUM(x, y, width, height);
+}
namespace gles2 {
@@ -3038,6 +3044,10 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glSwapBuffersWithDamageCHROMIUM),
},
{
+ "glSetDrawRectangleCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(glSetDrawRectangleCHROMIUM),
+ },
+ {
NULL, NULL,
},
};

Powered by Google App Engine
This is Rietveld 408576698