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

Unified Diff: content/common/gpu/media/rendering_helper.h

Issue 490233002: VaapiVideoAccelerator: make Vaapi accelerator work with ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable vaapi_h264_decoder_unittest on Ozone Created 6 years, 2 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: content/common/gpu/media/rendering_helper.h
diff --git a/content/common/gpu/media/rendering_helper.h b/content/common/gpu/media/rendering_helper.h
index b080f6816ce180d517b655e212ea5150fadb77df..c7ba059e93ba12dd3af94f80eda20804c8a65484 100644
--- a/content/common/gpu/media/rendering_helper.h
+++ b/content/common/gpu/media/rendering_helper.h
@@ -63,6 +63,8 @@ struct RenderingHelperParams {
// The members below are only used for the thumbnail mode where all frames
// are rendered in sequence onto one FBO for comparison/verification purposes.
+ // Whether any rendering will actually happen.
+ bool suppress_rendering;
Owen Lin 2014/11/03 06:59:06 Remove this ? Rebase conflict ?
llandwerlin-old 2014/11/03 09:30:10 As you suggested in a different comment, I will us
// Whether the frames are rendered as scaled thumbnails within a
// larger FBO that is in turn rendered to the window.
bool render_as_thumbnails;
@@ -115,8 +117,11 @@ class RenderingHelper {
// Get the platform specific handle to the OpenGL display.
void* GetGLDisplay();
+ // Get the GL context.
+ scoped_refptr<gfx::GLContext> GetGLContext();
+
// Get the platform specific handle to the OpenGL context.
- void* GetGLContext();
+ void* GetGLContextHandle();
// Get rendered thumbnails as RGB.
// Sets alpha_solid to true if the alpha channel is entirely 0xff.
@@ -170,6 +175,11 @@ class RenderingHelper {
scoped_refptr<gfx::GLContext> gl_context_;
scoped_refptr<gfx::GLSurface> gl_surface_;
+#if defined(USE_OZONE)
+ class StubOzoneDelegate;
+ scoped_ptr<StubOzoneDelegate> platform_window_delegate_;
+#endif
+
gfx::AcceleratedWidget window_;
gfx::Size screen_size_;

Powered by Google App Engine
This is Rietveld 408576698