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

Side by Side Diff: mojo/public/platform/native/gles2/call_visitor_ext_occlusion_query_autogen.h

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT!
10
11 VISIT_GL_CALL(GenQueriesEXT, void, (GLsizei n, GLuint* queries), (n, queries))
12 VISIT_GL_CALL(DeleteQueriesEXT,
13 void,
14 (GLsizei n, const GLuint* queries),
15 (n, queries))
16 VISIT_GL_CALL(IsQueryEXT, GLboolean, (GLuint id), (id))
17 VISIT_GL_CALL(BeginQueryEXT, void, (GLenum target, GLuint id), (target, id))
18 VISIT_GL_CALL(EndQueryEXT, void, (GLenum target), (target))
19 VISIT_GL_CALL(GetQueryivEXT,
20 void,
21 (GLenum target, GLenum pname, GLint* params),
22 (target, pname, params))
23 VISIT_GL_CALL(GetQueryObjectuivEXT,
24 void,
25 (GLuint id, GLenum pname, GLuint* params),
26 (id, pname, params))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698