| 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 efb6daf8221e8b7d0e5685d0ff0f379855975b73..f7c1696133dd15306e9725ed7e59d19597d5b28e 100644
|
| --- a/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| +++ b/gpu/command_buffer/common/gles2_cmd_format_test_autogen.h
|
| @@ -4260,7 +4260,10 @@ TEST_F(GLES2FormatTest, AsyncTexSubImage2DCHROMIUM) {
|
| static_cast<GLenum>(17),
|
| static_cast<GLenum>(18),
|
| static_cast<uint32>(19),
|
| - static_cast<uint32>(20));
|
| + static_cast<uint32>(20),
|
| + static_cast<uint32>(21),
|
| + static_cast<uint32>(22),
|
| + static_cast<uint32>(23));
|
| EXPECT_EQ(static_cast<uint32>(cmds::AsyncTexSubImage2DCHROMIUM::kCmdId),
|
| cmd.header.command);
|
| EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u);
|
| @@ -4274,6 +4277,9 @@ TEST_F(GLES2FormatTest, AsyncTexSubImage2DCHROMIUM) {
|
| EXPECT_EQ(static_cast<GLenum>(18), cmd.type);
|
| EXPECT_EQ(static_cast<uint32>(19), cmd.data_shm_id);
|
| EXPECT_EQ(static_cast<uint32>(20), cmd.data_shm_offset);
|
| + EXPECT_EQ(static_cast<uint32>(21), cmd.async_upload_token);
|
| + EXPECT_EQ(static_cast<uint32>(22), cmd.sync_data_shm_id);
|
| + EXPECT_EQ(static_cast<uint32>(23), cmd.sync_data_shm_offset);
|
| CheckBytesWrittenMatchesExpectedSize(
|
| next_cmd, sizeof(cmd));
|
| }
|
| @@ -4292,7 +4298,10 @@ TEST_F(GLES2FormatTest, AsyncTexImage2DCHROMIUM) {
|
| static_cast<GLenum>(17),
|
| static_cast<GLenum>(18),
|
| static_cast<uint32>(19),
|
| - static_cast<uint32>(20));
|
| + static_cast<uint32>(20),
|
| + static_cast<uint32>(21),
|
| + static_cast<uint32>(22),
|
| + static_cast<uint32>(23));
|
| EXPECT_EQ(static_cast<uint32>(cmds::AsyncTexImage2DCHROMIUM::kCmdId),
|
| cmd.header.command);
|
| EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u);
|
| @@ -4306,6 +4315,9 @@ TEST_F(GLES2FormatTest, AsyncTexImage2DCHROMIUM) {
|
| EXPECT_EQ(static_cast<GLenum>(18), cmd.type);
|
| EXPECT_EQ(static_cast<uint32>(19), cmd.pixels_shm_id);
|
| EXPECT_EQ(static_cast<uint32>(20), cmd.pixels_shm_offset);
|
| + EXPECT_EQ(static_cast<uint32>(21), cmd.async_upload_token);
|
| + EXPECT_EQ(static_cast<uint32>(22), cmd.sync_data_shm_id);
|
| + EXPECT_EQ(static_cast<uint32>(23), cmd.sync_data_shm_offset);
|
| CheckBytesWrittenMatchesExpectedSize(
|
| next_cmd, sizeof(cmd));
|
| }
|
| @@ -4324,6 +4336,18 @@ TEST_F(GLES2FormatTest, WaitAsyncTexImage2DCHROMIUM) {
|
| next_cmd, sizeof(cmd));
|
| }
|
|
|
| +TEST_F(GLES2FormatTest, WaitAllAsyncTexImage2DCHROMIUM) {
|
| + cmds::WaitAllAsyncTexImage2DCHROMIUM& cmd =
|
| + *GetBufferAs<cmds::WaitAllAsyncTexImage2DCHROMIUM>();
|
| + void* next_cmd = cmd.Set(
|
| + &cmd);
|
| + EXPECT_EQ(static_cast<uint32>(cmds::WaitAllAsyncTexImage2DCHROMIUM::kCmdId),
|
| + cmd.header.command);
|
| + EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u);
|
| + CheckBytesWrittenMatchesExpectedSize(
|
| + next_cmd, sizeof(cmd));
|
| +}
|
| +
|
| TEST_F(GLES2FormatTest, DiscardFramebufferEXT) {
|
| cmds::DiscardFramebufferEXT& cmd =
|
| *GetBufferAs<cmds::DiscardFramebufferEXT>();
|
|
|