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

Side by Side Diff: cc/output_surface.h

Issue 11861020: Aura: Browser-side changes for Composite-To-Mailbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CC_OUTPUT_SURFACE_H_ 5 #ifndef CC_OUTPUT_SURFACE_H_
6 #define CC_OUTPUT_SURFACE_H_ 6 #define CC_OUTPUT_SURFACE_H_
7 7
8 #define USE_CC_OUTPUT_SURFACE // TODO(danakj): Remove this. 8 #define USE_CC_OUTPUT_SURFACE // TODO(danakj): Remove this.
9 9
10 #include "cc/cc_export.h" 10 #include "cc/cc_export.h"
(...skipping 21 matching lines...) Expand all
32 virtual ~OutputSurface() {} 32 virtual ~OutputSurface() {}
33 33
34 // Called by the compositor on the compositor thread. This is a place where 34 // Called by the compositor on the compositor thread. This is a place where
35 // thread-specific data for the output surface can be initialized, since from 35 // thread-specific data for the output surface can be initialized, since from
36 // this point on the output surface will only be used on the compositor 36 // this point on the output surface will only be used on the compositor
37 // thread. 37 // thread.
38 virtual bool BindToClient(OutputSurfaceClient*) = 0; 38 virtual bool BindToClient(OutputSurfaceClient*) = 0;
39 39
40 struct Capabilities { 40 struct Capabilities {
41 Capabilities() 41 Capabilities()
42 : has_parent_compositor(false) {} 42 : has_parent_compositor(false),
43 render_to_mailbox(false) {}
43 44
44 bool has_parent_compositor; 45 bool has_parent_compositor;
46 bool render_to_mailbox;
45 }; 47 };
46 48
47 virtual const Capabilities& Capabilities() const = 0; 49 virtual const Capabilities& Capabilities() const = 0;
48 50
49 // Obtain the 3d context or the software device associated with this output 51 // Obtain the 3d context or the software device associated with this output
50 // surface. Either of these may return a null pointer, but not both. 52 // surface. Either of these may return a null pointer, but not both.
51 // In the event of a lost context, the entire output surface should be 53 // In the event of a lost context, the entire output surface should be
52 // recreated. 54 // recreated.
53 virtual WebKit::WebGraphicsContext3D* Context3D() const = 0; 55 virtual WebKit::WebGraphicsContext3D* Context3D() const = 0;
54 virtual SoftwareOutputDevice* SoftwareDevice() const = 0; 56 virtual SoftwareOutputDevice* SoftwareDevice() const = 0;
55 57
56 // Sends frame data to the parent compositor. This should only be called when 58 // Sends frame data to the parent compositor. This should only be called when
57 // capabilities().has_parent_compositor. The implementation may destroy or 59 // capabilities().has_parent_compositor. The implementation may destroy or
58 // steal the contents of the CompositorFrame passed in. 60 // steal the contents of the CompositorFrame passed in.
59 virtual void SendFrameToParentCompositor(CompositorFrame*) = 0; 61 virtual void SendFrameToParentCompositor(CompositorFrame*) = 0;
60 }; 62 };
61 63
62 } // namespace cc 64 } // namespace cc
63 65
64 #endif // CC_OUTPUT_SURFACE_H_ 66 #endif // CC_OUTPUT_SURFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698