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

Side by Side Diff: cc/trees/layer_tree_host_pixeltest_readback.cc

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « cc/trees/layer_tree_host_perftest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "cc/layers/solid_color_layer.h" 6 #include "cc/layers/solid_color_layer.h"
7 #include "cc/layers/texture_layer.h" 7 #include "cc/layers/texture_layer.h"
8 #include "cc/output/copy_output_request.h" 8 #include "cc/output/copy_output_request.h"
9 #include "cc/output/copy_output_result.h" 9 #include "cc/output/copy_output_result.h"
10 #include "cc/test/fake_picture_layer.h" 10 #include "cc/test/fake_picture_layer.h"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 EXPECT_TRUE(result->HasTexture()); 116 EXPECT_TRUE(result->HasTexture());
117 117
118 TextureMailbox texture_mailbox; 118 TextureMailbox texture_mailbox;
119 scoped_ptr<SingleReleaseCallback> release_callback; 119 scoped_ptr<SingleReleaseCallback> release_callback;
120 result->TakeTexture(&texture_mailbox, &release_callback); 120 result->TakeTexture(&texture_mailbox, &release_callback);
121 EXPECT_TRUE(texture_mailbox.IsValid()); 121 EXPECT_TRUE(texture_mailbox.IsValid());
122 EXPECT_TRUE(texture_mailbox.IsTexture()); 122 EXPECT_TRUE(texture_mailbox.IsTexture());
123 123
124 scoped_ptr<SkBitmap> bitmap = 124 scoped_ptr<SkBitmap> bitmap =
125 CopyTextureMailboxToBitmap(result->size(), texture_mailbox); 125 CopyTextureMailboxToBitmap(result->size(), texture_mailbox);
126 release_callback->Run(0, false); 126 release_callback->Run(gpu::SyncToken(), false);
127 127
128 ReadbackResultAsBitmap(CopyOutputResult::CreateBitmapResult(bitmap.Pass())); 128 ReadbackResultAsBitmap(CopyOutputResult::CreateBitmapResult(bitmap.Pass()));
129 } 129 }
130 130
131 ReadbackType readback_type_; 131 ReadbackType readback_type_;
132 gfx::Rect copy_subrect_; 132 gfx::Rect copy_subrect_;
133 int insert_copy_request_after_frame_count_; 133 int insert_copy_request_after_frame_count_;
134 }; 134 };
135 135
136 void IgnoreReadbackResult(scoped_ptr<CopyOutputResult> result) { 136 void IgnoreReadbackResult(scoped_ptr<CopyOutputResult> result) {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 READBACK_DEFAULT), 547 READBACK_DEFAULT),
548 ReadbackTestConfig(LayerTreeHostReadbackPixelTest::PIXEL_TEST_GL, 548 ReadbackTestConfig(LayerTreeHostReadbackPixelTest::PIXEL_TEST_GL,
549 READBACK_DEFAULT), 549 READBACK_DEFAULT),
550 ReadbackTestConfig(LayerTreeHostReadbackPixelTest::PIXEL_TEST_GL, 550 ReadbackTestConfig(LayerTreeHostReadbackPixelTest::PIXEL_TEST_GL,
551 READBACK_BITMAP))); 551 READBACK_BITMAP)));
552 552
553 } // namespace 553 } // namespace
554 } // namespace cc 554 } // namespace cc
555 555
556 #endif // OS_ANDROID 556 #endif // OS_ANDROID
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_perftest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698