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

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

Issue 169603002: Add initial support for NV_path_rendering extension to gpu command buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comment Created 6 years, 3 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 GL_APICALL void GL_APIENTRY glWaitAsyncTexImage2DCHROMIUM (GLenumTexture Target target); 217 GL_APICALL void GL_APIENTRY glWaitAsyncTexImage2DCHROMIUM (GLenumTexture Target target);
218 GL_APICALL void GL_APIENTRY glWaitAllAsyncTexImage2DCHROMIUM (void); 218 GL_APICALL void GL_APIENTRY glWaitAllAsyncTexImage2DCHROMIUM (void);
219 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsi zei count, const GLenum* attachments); 219 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsi zei count, const GLenum* attachments);
220 GL_APICALL void GL_APIENTRY glLoseContextCHROMIUM (GLenumResetStatus cur rent, GLenumResetStatus other); 220 GL_APICALL void GL_APIENTRY glLoseContextCHROMIUM (GLenumResetStatus cur rent, GLenumResetStatus other);
221 GL_APICALL GLuint GL_APIENTRY glInsertSyncPointCHROMIUM (void); 221 GL_APICALL GLuint GL_APIENTRY glInsertSyncPointCHROMIUM (void);
222 GL_APICALL void GL_APIENTRY glWaitSyncPointCHROMIUM (GLuint sync_point); 222 GL_APICALL void GL_APIENTRY glWaitSyncPointCHROMIUM (GLuint sync_point);
223 GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei count, const GLenu m* bufs); 223 GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei count, const GLenu m* bufs);
224 GL_APICALL void GL_APIENTRY glDiscardBackbufferCHROMIUM (void); 224 GL_APICALL void GL_APIENTRY glDiscardBackbufferCHROMIUM (void);
225 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); 225 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);
226 226
227 // Extension CHROMIUM_path_rendering.
228 GL_APICALL void GL_APIENTRY glMatrixLoadfCHROMIUM (GLenumMatrixMode matr ixMode, const GLfloat* m);
229 GL_APICALL void GL_APIENTRY glMatrixLoadIdentityCHROMIUM (GLenumMatrixMo de matrixMode);
227 230
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698