Index: gpu/command_buffer/client/gles2_implementation.cc |
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc |
index d6b6c976c45c54c90f92c2c70939a18bc744de55..f8a84ed892f36c100cc801d4b90bca65bb438378 100644 |
--- a/gpu/command_buffer/client/gles2_implementation.cc |
+++ b/gpu/command_buffer/client/gles2_implementation.cc |
@@ -1123,14 +1123,14 @@ void GLES2Implementation::DeleteShaderStub( |
GLint GLES2Implementation::GetAttribLocationHelper( |
GLuint program, const char* name) { |
- typedef cmds::GetAttribLocationBucket::Result Result; |
+ typedef cmds::GetAttribLocation::Result Result; |
Result* result = GetResultAs<Result*>(); |
if (!result) { |
return -1; |
} |
*result = -1; |
SetBucketAsCString(kResultBucketId, name); |
- helper_->GetAttribLocationBucket( |
+ helper_->GetAttribLocation( |
program, kResultBucketId, GetResultShmId(), GetResultShmOffset()); |
WaitForCmd(); |
helper_->SetBucketSize(kResultBucketId, 0); |
@@ -1152,14 +1152,14 @@ GLint GLES2Implementation::GetAttribLocation( |
GLint GLES2Implementation::GetUniformLocationHelper( |
GLuint program, const char* name) { |
- typedef cmds::GetUniformLocationBucket::Result Result; |
+ typedef cmds::GetUniformLocation::Result Result; |
Result* result = GetResultAs<Result*>(); |
if (!result) { |
return -1; |
} |
*result = -1; |
SetBucketAsCString(kResultBucketId, name); |
- helper_->GetUniformLocationBucket(program, kResultBucketId, |
+ helper_->GetUniformLocation(program, kResultBucketId, |
GetResultShmId(), GetResultShmOffset()); |
WaitForCmd(); |
helper_->SetBucketSize(kResultBucketId, 0); |