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 a63c284e464a5ad95d2e966599dec927a5f684e3..78a74eb8d9b5ce73cc789518ec52ad06192984ef 100644 |
--- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h |
+++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h |
@@ -1786,5 +1786,16 @@ TEST_F(GLES2ImplementationTest, LoseContextCHROMIUM) { |
gl_->LoseContextCHROMIUM(1, 2); |
EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
} |
+ |
+TEST_F(GLES2ImplementationTest, WaitSyncPointCHROMIUM) { |
+ struct Cmds { |
+ WaitSyncPointCHROMIUM cmd; |
+ }; |
+ Cmds expected; |
+ expected.cmd.Init(1); |
+ |
+ gl_->WaitSyncPointCHROMIUM(1); |
+ EXPECT_EQ(0, memcmp(&expected, commands_, sizeof(expected))); |
+} |
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_UNITTEST_AUTOGEN_H_ |