| Index: gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| diff --git a/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h b/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| index e11bc479c390d5afbd75de2975367f8ad038214d..b23b569bc2a854a4f4b901879e8984e3aee3bcb8 100644
|
| --- a/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| +++ b/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| @@ -3706,12 +3706,14 @@ TEST_F(GLES2FormatTest, ResizeCHROMIUM) {
|
| void* next_cmd = cmd.Set(
|
| &cmd,
|
| static_cast<GLuint>(11),
|
| - static_cast<GLuint>(12));
|
| + static_cast<GLuint>(12),
|
| + static_cast<GLfloat>(13));
|
| EXPECT_EQ(static_cast<uint32>(cmds::ResizeCHROMIUM::kCmdId),
|
| cmd.header.command);
|
| EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u);
|
| EXPECT_EQ(static_cast<GLuint>(11), cmd.width);
|
| EXPECT_EQ(static_cast<GLuint>(12), cmd.height);
|
| + EXPECT_EQ(static_cast<GLfloat>(13), cmd.scale_factor);
|
| CheckBytesWrittenMatchesExpectedSize(
|
| next_cmd, sizeof(cmd));
|
| }
|
|
|