OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file is read by build_gles2_cmd_buffer.py to generate commands. | 5 // This file is read by build_gles2_cmd_buffer.py to generate commands. |
6 | 6 |
7 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); | 7 GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); |
8 GL_APICALL void GL_APIENTRY glAttachShader (GLidProgram program, GLidSha
der shader); | 8 GL_APICALL void GL_APIENTRY glAttachShader (GLidProgram program, GLidSha
der shader); |
9 GL_APICALL void GL_APIENTRY glBindAttribLocation (GLidProgram program, G
Luint index, const char* name); | 9 GL_APICALL void GL_APIENTRY glBindAttribLocation (GLidProgram program, G
Luint index, const char* name); |
10 GL_APICALL void GL_APIENTRY glBindBuffer (GLenumBufferTarget target, GLi
dBindBuffer buffer); | 10 GL_APICALL void GL_APIENTRY glBindBuffer (GLenumBufferTarget target, GLi
dBindBuffer buffer); |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 GL_APICALL void GL_APIENTRY glPostSubBufferCHROMIUM (GLint x, GLint y, G
Lint width, GLint height); | 179 GL_APICALL void GL_APIENTRY glPostSubBufferCHROMIUM (GLint x, GLint y, G
Lint width, GLint height); |
180 GL_APICALL void GL_APIENTRY glTexImageIOSurface2DCHROMIUM (GLenumTexture
BindTarget target, GLsizei width, GLsizei height, GLuint ioSurfaceId, GLuint pla
ne); | 180 GL_APICALL void GL_APIENTRY glTexImageIOSurface2DCHROMIUM (GLenumTexture
BindTarget target, GLsizei width, GLsizei height, GLuint ioSurfaceId, GLuint pla
ne); |
181 GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM (GLenum target, GLenum
source_id, GLenum dest_id, GLint level, GLintTextureInternalFormat internalform
at); | 181 GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM (GLenum target, GLenum
source_id, GLenum dest_id, GLint level, GLintTextureInternalFormat internalform
at); |
182 GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenumDrawMode m
ode, GLint first, GLsizei count, GLsizei primcount); | 182 GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenumDrawMode m
ode, GLint first, GLsizei count, GLsizei primcount); |
183 GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenumDrawMode
mode, GLsizei count, GLenumIndexType type, const void* indices, GLsizei primcou
nt); | 183 GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenumDrawMode
mode, GLsizei count, GLenumIndexType type, const void* indices, GLsizei primcou
nt); |
184 GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GL
uint divisor); | 184 GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GL
uint divisor); |
185 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM (GLbyte* mailbox); | 185 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM (GLbyte* mailbox); |
186 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); | 186 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); |
187 GL_APICALL void GL_APIENTRY glConsumeTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); | 187 GL_APICALL void GL_APIENTRY glConsumeTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); |
188 GL_APICALL void GL_APIENTRY glBindUniformLocationCHROMIUM (GLidProgram p
rogram, GLint location, const char* name); | 188 GL_APICALL void GL_APIENTRY glBindUniformLocationCHROMIUM (GLidProgram p
rogram, GLint location, const char* name); |
| 189 GL_APICALL void GL_APIENTRY glTexImagePixmap2DCHROMIUM (GLenumTextureBin
dTarget target, GLuint pixmapId); |
189 | 190 |
OLD | NEW |