Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
index 0a78a60601cd46248b508b971ec044f3519071a3..18a61052f8b5f696afafdaddae12cbd9edc6af51 100644 |
--- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h |
@@ -876,7 +876,8 @@ TEST_P(GLES2DecoderTest1, EnableVertexAttribArrayValidArgs) { |
TEST_P(GLES2DecoderTest1, FenceSyncValidArgs) { |
const GLsync kNewServiceIdGLuint = reinterpret_cast<GLsync>(kNewServiceId); |
- EXPECT_CALL(*gl_, FenceSync(0x9117, 0)).WillOnce(Return(kNewServiceIdGLuint)); |
+ EXPECT_CALL(*gl_, FenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0)) |
+ .WillOnce(Return(kNewServiceIdGLuint)); |
SpecializedSetup<cmds::FenceSync, 0>(true); |
cmds::FenceSync cmd; |
cmd.Init(kNewClientId); |
@@ -1394,6 +1395,7 @@ TEST_P(GLES2DecoderTest1, GetFloatvInvalidArgs1_1) { |
EXPECT_EQ(error::kOutOfBounds, ExecuteCmd(cmd)); |
EXPECT_EQ(0u, result->size); |
} |
+// TODO(gman): GetFragDataLocation |
TEST_P(GLES2DecoderTest1, GetFramebufferAttachmentParameterivValidArgs) { |
EXPECT_CALL(*gl_, GetError()) |
@@ -1943,6 +1945,4 @@ TEST_P(GLES2DecoderTest1, GetTexParameterivInvalidArgs2_1) { |
// TODO(gman): GetUniformiv |
-// TODO(gman): GetUniformLocation |
- |
#endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_DECODER_UNITTEST_1_AUTOGEN_H_ |