Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: gpu/command_buffer/client/transfer_buffer_unittest.cc

Issue 782583003: List sync points to wait on in AsyncFlush message Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/transfer_buffer_unittest.cc
diff --git a/gpu/command_buffer/client/transfer_buffer_unittest.cc b/gpu/command_buffer/client/transfer_buffer_unittest.cc
index 7dac4f5d062994a560f203c48a292d5512671eb7..365d4eddcf836fb6209a4f40dda47b22ba4c71da 100644
--- a/gpu/command_buffer/client/transfer_buffer_unittest.cc
+++ b/gpu/command_buffer/client/transfer_buffer_unittest.cc
@@ -200,7 +200,7 @@ TEST_F(TransferBufferTest, Flush) {
ASSERT_TRUE(ptr != NULL);
EXPECT_EQ(8u, size_allocated);
if (i % 2) {
- EXPECT_CALL(*command_buffer(), Flush(_))
+ EXPECT_CALL(*command_buffer(), Flush(_, _))
.Times(1)
.RetiresOnSaturation();
}
@@ -210,7 +210,7 @@ TEST_F(TransferBufferTest, Flush) {
void* ptr = transfer_buffer_->Alloc(8u);
ASSERT_TRUE(ptr != NULL);
if (i % 2) {
- EXPECT_CALL(*command_buffer(), Flush(_))
+ EXPECT_CALL(*command_buffer(), Flush(_, _))
.Times(1)
.RetiresOnSaturation();
}
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_unittest_autogen.h ('k') | gpu/command_buffer/common/command_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698