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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 88033002: Add RGB565 Texture readback support in gl_helper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modified code as per the review comments. Created 6 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 263
264 void AttachLayers(); 264 void AttachLayers();
265 void RemoveLayers(); 265 void RemoveLayers();
266 266
267 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata); 267 void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata);
268 268
269 // Called after async screenshot task completes. Scales and crops the result 269 // Called after async screenshot task completes. Scales and crops the result
270 // of the copy. 270 // of the copy.
271 static void PrepareTextureCopyOutputResult( 271 static void PrepareTextureCopyOutputResult(
272 const gfx::Size& dst_size_in_pixel, 272 const gfx::Size& dst_size_in_pixel,
273 bool readback_config_rgb565,
273 const base::Callback<void(bool, const SkBitmap&)>& callback, 274 const base::Callback<void(bool, const SkBitmap&)>& callback,
274 scoped_ptr<cc::CopyOutputResult> result); 275 scoped_ptr<cc::CopyOutputResult> result);
275 static void PrepareBitmapCopyOutputResult( 276 static void PrepareBitmapCopyOutputResult(
276 const gfx::Size& dst_size_in_pixel, 277 const gfx::Size& dst_size_in_pixel,
277 const base::Callback<void(bool, const SkBitmap&)>& callback, 278 const base::Callback<void(bool, const SkBitmap&)>& callback,
278 scoped_ptr<cc::CopyOutputResult> result); 279 scoped_ptr<cc::CopyOutputResult> result);
279 280
280 // DevTools ScreenCast support for Android WebView. 281 // DevTools ScreenCast support for Android WebView.
281 void SynchronousCopyContents( 282 void SynchronousCopyContents(
282 const gfx::Rect& src_subrect_in_pixel, 283 const gfx::Rect& src_subrect_in_pixel,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 const bool using_synchronous_compositor_; 350 const bool using_synchronous_compositor_;
350 351
351 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; 352 scoped_ptr<DelegatedFrameEvictor> frame_evictor_;
352 353
353 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 354 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
354 }; 355 };
355 356
356 } // namespace content 357 } // namespace content
357 358
358 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 359 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698