| 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 f30ab896f87690ffdfa30e091e3c6aa3eb0737b2..3d462c40d0c40e6197397cdbfc8cf809f48bdb60 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| @@ -909,25 +909,7 @@ TEST_F(GLES2ImplementationTest, GetIntegerv) {
|
| EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| EXPECT_EQ(static_cast<ResultType>(1), result);
|
| }
|
| -
|
| -TEST_F(GLES2ImplementationTest, GetInternalformativ) {
|
| - struct Cmds {
|
| - cmds::GetInternalformativ cmd;
|
| - };
|
| - typedef cmds::GetInternalformativ::Result::Type ResultType;
|
| - ResultType result = 0;
|
| - Cmds expected;
|
| - ExpectedMemoryInfo result1 =
|
| - GetExpectedResultMemory(sizeof(uint32_t) + sizeof(ResultType));
|
| - expected.cmd.Init(123, GL_RGBA4, GL_NUM_SAMPLE_COUNTS, 4, result1.id,
|
| - result1.offset);
|
| - EXPECT_CALL(*command_buffer(), OnFlush())
|
| - .WillOnce(SetMemory(result1.ptr, SizedResultHelper<ResultType>(1)))
|
| - .RetiresOnSaturation();
|
| - gl_->GetInternalformativ(123, GL_RGBA4, GL_NUM_SAMPLE_COUNTS, 4, &result);
|
| - EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| - EXPECT_EQ(static_cast<ResultType>(1), result);
|
| -}
|
| +// TODO(zmo): Implement unit test for GetInternalformativ
|
|
|
| TEST_F(GLES2ImplementationTest, GetProgramiv) {
|
| struct Cmds {
|
|
|