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

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

Issue 1309743005: command_buffer: Implement EXT_blend_func_extended (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase Created 5 years 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 345
346 346
347 // Extension KHR_robustness 347 // Extension KHR_robustness
348 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); 348 GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void);
349 349
350 // Extension KHR_blend_equation_advanced 350 // Extension KHR_blend_equation_advanced
351 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); 351 GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void);
352 352
353 // Extension GL_CHROMIUM_screen_space_antialiasing 353 // Extension GL_CHROMIUM_screen_space_antialiasing
354 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void); 354 GL_APICALL void GL_APIENTRY glApplyScreenSpaceAntialiasingCHROMIUM (void);
355
356 // Extension EXT_blend_func_extended
357 GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLidProgra m program, GLuint colorNumber, GLuint index, const char* name);
358 GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLidProgram progr am, GLuint colorNumber, const char* name);
359 GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLidProgram program, const char* name);
360
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/program_info_manager.cc ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698