| Index: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| index b57bef4d5f73c43ddab00bb8b967f6375b3f828a..7ae9d101381a364fff1898541a9a7e80a7eb872b 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| @@ -2840,6 +2840,17 @@ TEST_F(GLES2ImplementationTest, CopySubTextureCHROMIUM) {
|
| EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| }
|
|
|
| +TEST_F(GLES2ImplementationTest, CopyCompressedTextureCHROMIUM) {
|
| + struct Cmds {
|
| + cmds::CopyCompressedTextureCHROMIUM cmd;
|
| + };
|
| + Cmds expected;
|
| + expected.cmd.Init(1, 2, 3, 4, GL_UNSIGNED_BYTE, 6);
|
| +
|
| + gl_->CopyCompressedTextureCHROMIUM(1, 2, 3, 4, GL_UNSIGNED_BYTE, 6);
|
| + EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| +}
|
| +
|
| TEST_F(GLES2ImplementationTest, DrawArraysInstancedANGLE) {
|
| struct Cmds {
|
| cmds::DrawArraysInstancedANGLE cmd;
|
|
|