| 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 e9828ce9c3b5eeeae701e8c762985e7c00a969c1..924cd3c5cfd46c457b61845ff332d204aec5a4e4 100755
|
| --- a/gpu/command_buffer/build_gles2_cmd_buffer.py
|
| +++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
|
| @@ -1778,12 +1778,20 @@ _FUNCTION_INFO = {
|
| 'client_test': False,
|
| },
|
| 'GetString': {
|
| - 'type': 'Custom',
|
| - 'client_test': False,
|
| - 'cmd_args': 'GLenumStringType name, uint32 bucket_id',
|
| + 'type': 'Custom',
|
| + 'client_test': False,
|
| + 'cmd_args': 'GLenumStringType name, uint32 bucket_id',
|
| + },
|
| + 'GetTexParameterfv': {
|
| + 'type': 'GETn',
|
| + 'decoder_func': 'DoGetTexParameterfv',
|
| + 'result': ['SizedResult<GLfloat>']
|
| + },
|
| + 'GetTexParameteriv': {
|
| + 'type': 'GETn',
|
| + 'decoder_func': 'DoGetTexParameteriv',
|
| + 'result': ['SizedResult<GLint>']
|
| },
|
| - 'GetTexParameterfv': {'type': 'GETn', 'result': ['SizedResult<GLfloat>']},
|
| - 'GetTexParameteriv': {'type': 'GETn', 'result': ['SizedResult<GLint>']},
|
| 'GetTranslatedShaderSourceANGLE': {
|
| 'type': 'STRn',
|
| 'get_len_func': 'DoGetShaderiv',
|
|
|