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

Unified Diff: third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h

Issue 1181013010: Support impl-side painting in Mandoline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit warning Created 5 years, 6 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/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h
diff --git a/third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h b/third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h
new file mode 100644
index 0000000000000000000000000000000000000000..370a8f9d1098d227e7c4a3c2f07898f3b1c9d901
--- /dev/null
+++ b/third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h
@@ -0,0 +1,29 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file is auto-generated from
+// gpu/command_buffer/build_gles2_cmd_buffer.py
+// It's formatted by clang-format using chromium coding style:
+// clang-format -i -style=chromium filename
+// DO NOT EDIT!
+
+VISIT_GL_CALL(
+ CreateImageCHROMIUM,
+ GLuint,
+ (ClientBuffer buffer, GLsizei width, GLsizei height, GLenum internalformat),
+ (buffer, width, height, internalformat))
+VISIT_GL_CALL(DestroyImageCHROMIUM, void, (GLuint image_id), (image_id))
+VISIT_GL_CALL(
+ CreateGpuMemoryBufferImageCHROMIUM,
+ GLuint,
+ (GLsizei width, GLsizei height, GLenum internalformat, GLenum usage),
+ (width, height, internalformat, usage))
+VISIT_GL_CALL(BindTexImage2DCHROMIUM,
+ void,
+ (GLenum target, GLint imageId),
+ (target, imageId))
+VISIT_GL_CALL(ReleaseTexImage2DCHROMIUM,
+ void,
+ (GLenum target, GLint imageId),
+ (target, imageId))

Powered by Google App Engine
This is Rietveld 408576698