| Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| index 26abd1f9aca03dd7892df2a207a71d06c36f16f8..17bf4f32e25be3f48fde61a93f9cb06b619cf307 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| @@ -836,7 +836,7 @@ TEST_P(GLES2DecoderTest2, SamplerParameterfvImmediateValidArgs) {
|
| GLfloat temp[1] = {
|
| GL_NEAREST,
|
| };
|
| - cmd.Init(kServiceSamplerId, GL_TEXTURE_MAG_FILTER, &temp[0]);
|
| + cmd.Init(client_sampler_id_, GL_TEXTURE_MAG_FILTER, &temp[0]);
|
| EXPECT_CALL(*gl_, SamplerParameterf(kServiceSamplerId, GL_TEXTURE_MAG_FILTER,
|
| *reinterpret_cast<GLfloat*>(
|
| ImmediateDataAddress(&cmd))));
|
| @@ -867,7 +867,7 @@ TEST_P(GLES2DecoderTest2, SamplerParameterivImmediateValidArgs) {
|
| GLint temp[1] = {
|
| GL_NEAREST,
|
| };
|
| - cmd.Init(kServiceSamplerId, GL_TEXTURE_MAG_FILTER, &temp[0]);
|
| + cmd.Init(client_sampler_id_, GL_TEXTURE_MAG_FILTER, &temp[0]);
|
| EXPECT_CALL(*gl_, SamplerParameteri(
|
| kServiceSamplerId, GL_TEXTURE_MAG_FILTER,
|
| *reinterpret_cast<GLint*>(ImmediateDataAddress(&cmd))));
|
|
|