| 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 939ef93695a834dcf9e63b7e5952f08b38f19d6e..173f515b1f212372a5eaa07c536d82dc04b153bf 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
|
| @@ -93,7 +93,7 @@ TEST_F(GLES2DecoderTest2, IsBufferInvalidArgsBadSharedMemoryId) {
|
| TEST_F(GLES2DecoderTest2, IsEnabledValidArgs) {
|
| SpecializedSetup<IsEnabled, 0>(true);
|
| IsEnabled cmd;
|
| - cmd.Init(GL_DITHER, shared_memory_id_, shared_memory_offset_);
|
| + cmd.Init(GL_BLEND, shared_memory_id_, shared_memory_offset_);
|
| EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
|
| EXPECT_EQ(GL_NO_ERROR, GetGLError());
|
| }
|
| @@ -119,9 +119,9 @@ TEST_F(GLES2DecoderTest2, IsEnabledInvalidArgs0_1) {
|
| TEST_F(GLES2DecoderTest2, IsEnabledInvalidArgsBadSharedMemoryId) {
|
| SpecializedSetup<IsEnabled, 0>(false);
|
| IsEnabled cmd;
|
| - cmd.Init(GL_DITHER, kInvalidSharedMemoryId, shared_memory_offset_);
|
| + cmd.Init(GL_BLEND, kInvalidSharedMemoryId, shared_memory_offset_);
|
| EXPECT_EQ(error::kOutOfBounds, ExecuteCmd(cmd));
|
| - cmd.Init(GL_DITHER, shared_memory_id_, kInvalidSharedMemoryOffset);
|
| + cmd.Init(GL_BLEND, shared_memory_id_, kInvalidSharedMemoryOffset);
|
| EXPECT_EQ(error::kOutOfBounds, ExecuteCmd(cmd));
|
| }
|
|
|
|
|