/external/chromium_org/cc/test/ |
fake_proxy.cc | 13 bool FakeProxy::CompositeAndReadback(void* pixels, gfx::Rect rect) {
|
fake_proxy.h | 24 virtual bool CompositeAndReadback(void* pixels, gfx::Rect rect) OVERRIDE;
|
layer_tree_test.cc | 566 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1));
|
/external/chromium_org/cc/trees/ |
proxy.h | 49 virtual bool CompositeAndReadback(void* pixels, gfx::Rect rect) = 0; 77 // mode. It's an error to make a sync call like CompositeAndReadback while
|
single_thread_proxy.h | 30 virtual bool CompositeAndReadback(void* pixels, gfx::Rect rect) OVERRIDE;
|
thread_proxy.h | 44 virtual bool CompositeAndReadback(void* pixels, gfx::Rect rect) OVERRIDE;
|
layer_tree_host.h | 151 bool CompositeAndReadback(void* pixels, gfx::Rect rect_in_device_viewport);
|
layer_tree_host_unittest_damage.cc | 281 // CompositeAndReadback causes a follow-up commit. 295 layer_tree_host()->CompositeAndReadback(static_cast<void*>(&pixels),
|
single_thread_proxy.cc | 61 bool SingleThreadProxy::CompositeAndReadback(void* pixels, gfx::Rect rect) { 62 TRACE_EVENT0("cc", "SingleThreadProxy::CompositeAndReadback");
|
layer_tree_host.cc | 488 bool LayerTreeHost::CompositeAndReadback(void* pixels, 491 bool ret = proxy_->CompositeAndReadback(pixels, rect_in_device_viewport); [all...] |
layer_tree_host_unittest.cc | 458 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1)); 490 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1)); 611 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1)); 861 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1)); 940 // A compositeAndReadback while invisible should force a normal commit without 956 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1)); [all...] |
layer_tree_host_unittest_animation.cc | 681 // We shouldn't animate on the CompositeAndReadback-forced commit, but we 698 layer_tree_host()->CompositeAndReadback(&pixels, gfx::Rect(0, 0, 1, 1));
|
layer_tree_host_unittest_context.cc | [all...] |
layer_tree_host_pixeltest_readback.cc | 822 layer_tree_host()->CompositeAndReadback(bitmap->getPixels(), [all...] |
thread_proxy.cc | 129 bool ThreadProxy::CompositeAndReadback(void* pixels, gfx::Rect rect) { 130 TRACE_EVENT0("cc", "ThreadProxy::CompositeAndReadback"); 163 // main thread, which will be called after this CompositeAndReadback [all...] |
/external/chromium_org/content/public/browser/android/ |
compositor.h | 67 virtual bool CompositeAndReadback(void *pixels, const gfx::Rect& rect) = 0;
|
/external/chromium_org/content/browser/android/ |
content_view_render_view.cc | 98 return compositor_->CompositeAndReadback(bitmap.pixels(),
|
/external/chromium_org/content/browser/renderer_host/ |
compositor_impl_android.h | 57 virtual bool CompositeAndReadback(
|
compositor_impl_android.cc | 257 bool CompositorImpl::CompositeAndReadback(void *pixels, const gfx::Rect& rect) { 259 return host_->CompositeAndReadback(pixels, rect);
|
/external/chromium_org/content/test/ |
web_layer_tree_view_impl_for_testing.cc | 133 bool WebLayerTreeViewImplForTesting::compositeAndReadback( 135 return layer_tree_host_->CompositeAndReadback(pixels,
|
/external/chromium_org/ui/compositor/ |
compositor.cc | 464 return host_->CompositeAndReadback(pixels, bounds_in_pixel);
|
/external/chromium_org/content/renderer/gpu/ |
render_widget_compositor.cc | 524 bool RenderWidgetCompositor::compositeAndReadback( 526 return layer_tree_host_->CompositeAndReadback(pixels,
|