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

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 unittest and android gn build 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..acb35a9797d920490bb87499bbc92d141af49ef3
--- /dev/null
+++ b/third_party/mojo/src/mojo/public/c/gles2/gles2_call_visitor_chromium_image_autogen.h
@@ -0,0 +1,69 @@
+// 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(MapBufferCHROMIUM,
+ void*,
+ (GLuint target, GLenum access),
+ (target, access))
+VISIT_GL_CALL(UnmapBufferCHROMIUM, GLboolean, (GLuint target), (target))
+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))
+VISIT_GL_CALL(
+ AsyncTexSubImage2DCHROMIUM,
+ void,
+ (GLenum target,
+ GLint level,
+ GLint xoffset,
+ GLint yoffset,
+ GLsizei width,
+ GLsizei height,
+ GLenum format,
+ GLenum type,
+ const void* data),
+ (target, level, xoffset, yoffset, width, height, format, type, data))
+VISIT_GL_CALL(AsyncTexImage2DCHROMIUM,
+ void,
+ (GLenum target,
+ GLint level,
+ GLenum internalformat,
+ GLsizei width,
+ GLsizei height,
+ GLint border,
+ GLenum format,
+ GLenum type,
+ const void* pixels),
+ (target,
+ level,
+ internalformat,
+ width,
+ height,
+ border,
+ format,
+ type,
+ pixels))
+VISIT_GL_CALL(WaitAsyncTexImage2DCHROMIUM, void, (GLenum target), (target))
+VISIT_GL_CALL(WaitAllAsyncTexImage2DCHROMIUM, void, (), ())

Powered by Google App Engine
This is Rietveld 408576698