| 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 8507032b7e0adb84419fd9d225eb445fd32e7c67..28f76b12e1b79824f4119262b3713c31433990b1 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
|
| @@ -1138,42 +1138,6 @@ TEST_F(GLES2ImplementationTest, Hint) {
|
| EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| }
|
|
|
| -TEST_F(GLES2ImplementationTest, InvalidateFramebuffer) {
|
| - GLenum data[2][1] = {{0}};
|
| - struct Cmds {
|
| - cmds::InvalidateFramebufferImmediate cmd;
|
| - GLenum data[2][1];
|
| - };
|
| -
|
| - Cmds expected;
|
| - for (int ii = 0; ii < 2; ++ii) {
|
| - for (int jj = 0; jj < 1; ++jj) {
|
| - data[ii][jj] = static_cast<GLenum>(ii * 1 + jj);
|
| - }
|
| - }
|
| - expected.cmd.Init(GL_FRAMEBUFFER, 2, &data[0][0]);
|
| - gl_->InvalidateFramebuffer(GL_FRAMEBUFFER, 2, &data[0][0]);
|
| - EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| -}
|
| -
|
| -TEST_F(GLES2ImplementationTest, InvalidateSubFramebuffer) {
|
| - GLenum data[2][1] = {{0}};
|
| - struct Cmds {
|
| - cmds::InvalidateSubFramebufferImmediate cmd;
|
| - GLenum data[2][1];
|
| - };
|
| -
|
| - Cmds expected;
|
| - for (int ii = 0; ii < 2; ++ii) {
|
| - for (int jj = 0; jj < 1; ++jj) {
|
| - data[ii][jj] = static_cast<GLenum>(ii * 1 + jj);
|
| - }
|
| - }
|
| - expected.cmd.Init(GL_FRAMEBUFFER, 2, &data[0][0], 4, 5, 6, 7);
|
| - gl_->InvalidateSubFramebuffer(GL_FRAMEBUFFER, 2, &data[0][0], 4, 5, 6, 7);
|
| - EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| -}
|
| -
|
| TEST_F(GLES2ImplementationTest, IsBuffer) {
|
| struct Cmds {
|
| cmds::IsBuffer cmd;
|
| @@ -2778,24 +2742,6 @@ TEST_F(GLES2ImplementationTest, ReleaseTexImage2DCHROMIUM) {
|
| EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| }
|
|
|
| -TEST_F(GLES2ImplementationTest, DiscardFramebufferEXT) {
|
| - GLenum data[2][1] = {{0}};
|
| - struct Cmds {
|
| - cmds::DiscardFramebufferEXTImmediate cmd;
|
| - GLenum data[2][1];
|
| - };
|
| -
|
| - Cmds expected;
|
| - for (int ii = 0; ii < 2; ++ii) {
|
| - for (int jj = 0; jj < 1; ++jj) {
|
| - data[ii][jj] = static_cast<GLenum>(ii * 1 + jj);
|
| - }
|
| - }
|
| - expected.cmd.Init(1, 2, &data[0][0]);
|
| - gl_->DiscardFramebufferEXT(1, 2, &data[0][0]);
|
| - EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| -}
|
| -
|
| TEST_F(GLES2ImplementationTest, LoseContextCHROMIUM) {
|
| struct Cmds {
|
| cmds::LoseContextCHROMIUM cmd;
|
| @@ -2808,24 +2754,6 @@ TEST_F(GLES2ImplementationTest, LoseContextCHROMIUM) {
|
| EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| }
|
|
|
| -TEST_F(GLES2ImplementationTest, DrawBuffersEXT) {
|
| - GLenum data[1][1] = {{0}};
|
| - struct Cmds {
|
| - cmds::DrawBuffersEXTImmediate cmd;
|
| - GLenum data[1][1];
|
| - };
|
| -
|
| - Cmds expected;
|
| - for (int ii = 0; ii < 1; ++ii) {
|
| - for (int jj = 0; jj < 1; ++jj) {
|
| - data[ii][jj] = static_cast<GLenum>(ii * 1 + jj);
|
| - }
|
| - }
|
| - expected.cmd.Init(1, &data[0][0]);
|
| - gl_->DrawBuffersEXT(1, &data[0][0]);
|
| - EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected)));
|
| -}
|
| -
|
| TEST_F(GLES2ImplementationTest, DiscardBackbufferCHROMIUM) {
|
| struct Cmds {
|
| cmds::DiscardBackbufferCHROMIUM cmd;
|
|
|