| Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| index 4002a587a4c4fdec33de8d16113b93bfbf021a31..5a3f3b4ab6c43fe19ed70c571dca2119ff3c3424 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h
|
| @@ -1290,6 +1290,7 @@ TEST_P(GLES2DecoderTest2, Uniform4uivImmediateValidArgs) {
|
| decoder_->set_unsafe_es3_apis_enabled(false);
|
| EXPECT_EQ(error::kUnknownCommand, ExecuteImmediateCmd(cmd, sizeof(temp)));
|
| }
|
| +// TODO(gman): UniformBlockBinding
|
|
|
| TEST_P(GLES2DecoderTest2, UniformMatrix2fvImmediateValidArgs) {
|
| cmds::UniformMatrix2fvImmediate& cmd =
|
| @@ -1548,18 +1549,4 @@ TEST_P(GLES2DecoderTest2, VertexAttrib4fValidArgs) {
|
| EXPECT_EQ(error::kNoError, ExecuteCmd(cmd));
|
| EXPECT_EQ(GL_NO_ERROR, GetGLError());
|
| }
|
| -
|
| -TEST_P(GLES2DecoderTest2, VertexAttrib4fvImmediateValidArgs) {
|
| - cmds::VertexAttrib4fvImmediate& cmd =
|
| - *GetImmediateAs<cmds::VertexAttrib4fvImmediate>();
|
| - SpecializedSetup<cmds::VertexAttrib4fvImmediate, 0>(true);
|
| - GLfloat temp[4] = {
|
| - 0,
|
| - };
|
| - cmd.Init(1, &temp[0]);
|
| - EXPECT_CALL(*gl_, VertexAttrib4fv(1, reinterpret_cast<GLfloat*>(
|
| - ImmediateDataAddress(&cmd))));
|
| - EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
|
| - EXPECT_EQ(GL_NO_ERROR, GetGLError());
|
| -}
|
| #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_2_AUTOGEN_H_
|
|
|