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

Unified Diff: cc/test/pixel_test.cc

Issue 375303002: cc: Refactor ResourceProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove helper class move api impl to callee. Created 6 years, 5 months 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: cc/test/pixel_test.cc
diff --git a/cc/test/pixel_test.cc b/cc/test/pixel_test.cc
index 73abc1c3828bd6cda9eab556cda460fff187ea9e..34cbfae7265fabd8ecb8ec03d328ab6b98226ebe 100644
--- a/cc/test/pixel_test.cc
+++ b/cc/test/pixel_test.cc
@@ -25,8 +25,11 @@
#include "cc/test/pixel_test_utils.h"
#include "cc/test/test_in_process_context_provider.h"
#include "cc/test/test_shared_bitmap_manager.h"
+#include "gpu/command_buffer/client/gles2_interface.h"
#include "testing/gtest/include/gtest/gtest.h"
+using gpu::gles2::GLES2Interface;
+
namespace cc {
PixelTest::PixelTest()
@@ -71,7 +74,9 @@ bool PixelTest::RunPixelTestWithReadbackTarget(
disable_picture_quad_image_filtering_);
// Wait for the readback to complete.
- resource_provider_->Finish();
+ GLES2Interface* gl = resource_provider_->ContextGL();
danakj 2014/07/10 17:01:44 use the output_surface_->context_provider() instea
sohanjg 2014/07/11 16:43:32 Done.
+ if (gl)
+ gl->Finish();
run_loop.Run();
return PixelsMatchReference(ref_file, comparator);

Powered by Google App Engine
This is Rietveld 408576698