| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenumDrawMode
mode, GLsizei count, GLenumIndexType type, const void* indices, GLsizei primcou
nt); | 196 GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenumDrawMode
mode, GLsizei count, GLenumIndexType type, const void* indices, GLsizei primcou
nt); |
| 197 GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GL
uint divisor); | 197 GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GL
uint divisor); |
| 198 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM (GLbyte* mailbox); | 198 GL_APICALL void GL_APIENTRY glGenMailboxCHROMIUM (GLbyte* mailbox); |
| 199 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); | 199 GL_APICALL void GL_APIENTRY glProduceTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); |
| 200 GL_APICALL void GL_APIENTRY glConsumeTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); | 200 GL_APICALL void GL_APIENTRY glConsumeTextureCHROMIUM (GLenumTextureTarge
t target, const GLbyte* mailbox); |
| 201 GL_APICALL void GL_APIENTRY glBindUniformLocationCHROMIUM (GLidProgram p
rogram, GLint location, const char* name); | 201 GL_APICALL void GL_APIENTRY glBindUniformLocationCHROMIUM (GLidProgram p
rogram, GLint location, const char* name); |
| 202 GL_APICALL void GL_APIENTRY glBindTexImage2DCHROMIUM (GLenumTextureBindT
arget target, GLint imageId); | 202 GL_APICALL void GL_APIENTRY glBindTexImage2DCHROMIUM (GLenumTextureBindT
arget target, GLint imageId); |
| 203 GL_APICALL void GL_APIENTRY glReleaseTexImage2DCHROMIUM (GLenumTextureBi
ndTarget target, GLint imageId); | 203 GL_APICALL void GL_APIENTRY glReleaseTexImage2DCHROMIUM (GLenumTextureBi
ndTarget target, GLint imageId); |
| 204 GL_APICALL void GL_APIENTRY glTraceBeginCHROMIUM (const char* name); | 204 GL_APICALL void GL_APIENTRY glTraceBeginCHROMIUM (const char* name); |
| 205 GL_APICALL void GL_APIENTRY glTraceEndCHROMIUM (void); | 205 GL_APICALL void GL_APIENTRY glTraceEndCHROMIUM (void); |
| 206 GL_APICALL GLboolean GL_APIENTRY glAsyncTexSubImage2DCHROMIUM (GLenumTextureT
arget target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei
height, GLenumTextureFormat format, GLenumPixelType type, const void* data); |
| 207 GL_APICALL GLboolean GL_APIENTRY glAsyncTexImage2DCHROMIUM (GLenumTextureTarg
et target, GLint level, GLintTextureInternalFormat internalformat, GLsizei width
, GLsizei height, GLintTextureBorder border, GLenumTextureFormat format, GLenumP
ixelType type, const void* pixels); |
| OLD | NEW |