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 53bd25f1879cdd23496be86705d473f65a0c8926..e02da11223dcdc68e879e6f4f863b534b52345f9 100644 |
--- a/gpu/command_buffer/client/gles2_implementation.cc |
+++ b/gpu/command_buffer/client/gles2_implementation.cc |
@@ -1119,14 +1119,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); |
@@ -1148,14 +1148,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); |