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

Side by Side Diff: gpu/command_buffer/cmd_buffer_functions.txt

Issue 932963003: Add glClientWaitSync to GPU command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove using of union Created 5 years, 10 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
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 13 matching lines...) Expand all
24 GL_APICALL void GL_APIENTRY glBufferSubData (GLenumBufferTarget target, GLintptrNotNegative offset, GLsizeiptr size, const void* data); 24 GL_APICALL void GL_APIENTRY glBufferSubData (GLenumBufferTarget target, GLintptrNotNegative offset, GLsizeiptr size, const void* data);
25 GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenumFrameBufferT arget target); 25 GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenumFrameBufferT arget target);
26 GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); 26 GL_APICALL void GL_APIENTRY glClear (GLbitfield mask);
27 GL_APICALL void GL_APIENTRY glClearBufferfi (GLenumBufferfv buffer, GLin t drawbuffers, GLfloat depth, GLint stencil); 27 GL_APICALL void GL_APIENTRY glClearBufferfi (GLenumBufferfv buffer, GLin t drawbuffers, GLfloat depth, GLint stencil);
28 GL_APICALL void GL_APIENTRY glClearBufferfv (GLenumBufferfv buffer, GLin t drawbuffers, const GLfloat* value); 28 GL_APICALL void GL_APIENTRY glClearBufferfv (GLenumBufferfv buffer, GLin t drawbuffers, const GLfloat* value);
29 GL_APICALL void GL_APIENTRY glClearBufferiv (GLenumBufferiv buffer, GLin t drawbuffers, const GLint* value); 29 GL_APICALL void GL_APIENTRY glClearBufferiv (GLenumBufferiv buffer, GLin t drawbuffers, const GLint* value);
30 GL_APICALL void GL_APIENTRY glClearBufferuiv (GLenumBufferuiv buffer, GL int drawbuffers, const GLuint* value); 30 GL_APICALL void GL_APIENTRY glClearBufferuiv (GLenumBufferuiv buffer, GL int drawbuffers, const GLuint* value);
31 GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 31 GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
32 GL_APICALL void GL_APIENTRY glClearDepthf (GLclampf depth); 32 GL_APICALL void GL_APIENTRY glClearDepthf (GLclampf depth);
33 GL_APICALL void GL_APIENTRY glClearStencil (GLint s); 33 GL_APICALL void GL_APIENTRY glClearStencil (GLint s);
34 GL_APICALL GLenum GL_APIENTRY glClientWaitSync (GLsync sync, GLbitfieldSyn cFlushFlags flags, GLuint64 timeout);
34 GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); 35 GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
35 GL_APICALL void GL_APIENTRY glCompileShader (GLidShader shader); 36 GL_APICALL void GL_APIENTRY glCompileShader (GLidShader shader);
36 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenumTextureTarget target, GLint level, GLenumCompressedTextureFormat internalformat, GLsizei width , GLsizei height, GLintTextureBorder border, GLsizei imageSize, const void* data ); 37 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenumTextureTarget target, GLint level, GLenumCompressedTextureFormat internalformat, GLsizei width , GLsizei height, GLintTextureBorder border, GLsizei imageSize, const void* data );
37 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenumTextureTarg et target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei hei ght, GLenumCompressedTextureFormat format, GLsizei imageSize, const void* data); 38 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenumTextureTarg et target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei hei ght, GLenumCompressedTextureFormat format, GLsizei imageSize, const void* data);
38 GL_APICALL void GL_APIENTRY glCopyBufferSubData (GLenumBufferTarget read target, GLenumBufferTarget writetarget, GLintptrNotNegative readoffset, GLintptr NotNegative writeoffset, GLsizeiptr size); 39 GL_APICALL void GL_APIENTRY glCopyBufferSubData (GLenumBufferTarget read target, GLenumBufferTarget writetarget, GLintptrNotNegative readoffset, GLintptr NotNegative writeoffset, GLsizeiptr size);
39 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenumTextureTarget target , GLint level, GLenumTextureInternalFormat internalformat, GLint x, GLint y, GLs izei width, GLsizei height, GLintTextureBorder border); 40 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenumTextureTarget target , GLint level, GLenumTextureInternalFormat internalformat, GLint x, GLint y, GLs izei width, GLsizei height, GLintTextureBorder border);
40 GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenumTextureTarget tar get, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); 41 GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenumTextureTarget tar get, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
41 GL_APICALL void GL_APIENTRY glCopyTexSubImage3D (GLenumTexture3DTarget t arget, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); 42 GL_APICALL void GL_APIENTRY glCopyTexSubImage3D (GLenumTexture3DTarget t arget, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
42 GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); 43 GL_APICALL GLuint GL_APIENTRY glCreateProgram (void);
43 GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenumShaderType type); 44 GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenumShaderType type);
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 GL_APICALL void GL_APIENTRY glDiscardBackbufferCHROMIUM (void); 294 GL_APICALL void GL_APIENTRY glDiscardBackbufferCHROMIUM (void);
294 GL_APICALL void GL_APIENTRY glScheduleOverlayPlaneCHROMIUM (GLint plane_ z_order, GLenum plane_transform, GLuint overlay_texture_id, GLint bounds_x, GLin t bounds_y, GLint bounds_width, GLint bounds_height, GLfloat uv_x, GLfloat uv_y, GLfloat uv_width, GLfloat uv_height); 295 GL_APICALL void GL_APIENTRY glScheduleOverlayPlaneCHROMIUM (GLint plane_ z_order, GLenum plane_transform, GLuint overlay_texture_id, GLint bounds_x, GLin t bounds_y, GLint bounds_width, GLint bounds_height, GLfloat uv_x, GLfloat uv_y, GLfloat uv_width, GLfloat uv_height);
295 GL_APICALL void GL_APIENTRY glSwapInterval (GLint interval); 296 GL_APICALL void GL_APIENTRY glSwapInterval (GLint interval);
296 297
297 // Extension CHROMIUM_path_rendering. 298 // Extension CHROMIUM_path_rendering.
298 GL_APICALL void GL_APIENTRY glMatrixLoadfCHROMIUM (GLenumMatrixMode matr ixMode, const GLfloat* m); 299 GL_APICALL void GL_APIENTRY glMatrixLoadfCHROMIUM (GLenumMatrixMode matr ixMode, const GLfloat* m);
299 GL_APICALL void GL_APIENTRY glMatrixLoadIdentityCHROMIUM (GLenumMatrixMo de matrixMode); 300 GL_APICALL void GL_APIENTRY glMatrixLoadIdentityCHROMIUM (GLenumMatrixMo de matrixMode);
300 301
301 // Extension KHR_blend_equation_advanced 302 // Extension KHR_blend_equation_advanced
302 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); 303 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void);
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h ('k') | gpu/command_buffer/common/gles2_cmd_format.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698