| Index: gpu/command_buffer/build_gles2_cmd_buffer.py
|
| diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py
|
| index 3ac93500b1cb4255711d9c624b1e85bdfe2a5e22..bbaec91a5ad09572a1f8cf832e1aa29ebd11fa43 100755
|
| --- a/gpu/command_buffer/build_gles2_cmd_buffer.py
|
| +++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
|
| @@ -2828,6 +2828,16 @@ _FUNCTION_INFO = {
|
| 'result': ['GLint'],
|
| 'error_return': -1,
|
| },
|
| + 'GetFragDataIndexEXT': {
|
| + 'type': 'Custom',
|
| + 'data_transfer_methods': ['shm'],
|
| + 'cmd_args':
|
| + 'GLidProgram program, uint32_t name_bucket_id, GLint* index',
|
| + 'result': ['GLint'],
|
| + 'error_return': -1,
|
| + 'extension': 'EXT_blend_func_extended',
|
| + 'extension_flag': 'ext_blend_func_extended',
|
| + },
|
| 'GetFragDataLocation': {
|
| 'type': 'Custom',
|
| 'data_transfer_methods': ['shm'],
|
| @@ -3995,6 +4005,22 @@ _FUNCTION_INFO = {
|
| 'extension': True,
|
| 'chromium': True,
|
| },
|
| + 'BindFragDataLocationEXT': {
|
| + 'type': 'GLchar',
|
| + 'data_transfer_methods': ['bucket'],
|
| + 'needs_size': True,
|
| + 'gl_test_func': 'DoBindFragDataLocationEXT',
|
| + 'extension': 'EXT_blend_func_extended',
|
| + 'extension_flag': 'ext_blend_func_extended',
|
| + },
|
| + 'BindFragDataLocationIndexedEXT': {
|
| + 'type': 'GLchar',
|
| + 'data_transfer_methods': ['bucket'],
|
| + 'needs_size': True,
|
| + 'gl_test_func': 'DoBindFragDataLocationIndexedEXT',
|
| + 'extension': 'EXT_blend_func_extended',
|
| + 'extension_flag': 'ext_blend_func_extended',
|
| + },
|
| 'BindUniformLocationCHROMIUM': {
|
| 'type': 'GLchar',
|
| 'extension': 'CHROMIUM_bind_uniform_location',
|
|
|