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

Unified Diff: cc/surfaces/surface.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « cc/surfaces/onscreen_display_client.cc ('k') | cc/surfaces/surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/surfaces/surface.h
diff --git a/cc/surfaces/surface.h b/cc/surfaces/surface.h
new file mode 100644
index 0000000000000000000000000000000000000000..8e6d7a46cbf454876555dcf632527f4ee994169b
--- /dev/null
+++ b/cc/surfaces/surface.h
@@ -0,0 +1,92 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_SURFACES_SURFACE_H_
+#define CC_SURFACES_SURFACE_H_
+
+#include <map>
+#include <vector>
+
+#include "base/callback.h"
+#include "base/containers/hash_tables.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "cc/base/scoped_ptr_vector.h"
+#include "cc/output/copy_output_request.h"
+#include "cc/quads/render_pass_id.h"
+#include "cc/surfaces/surface_factory.h"
+#include "cc/surfaces/surface_id.h"
+#include "cc/surfaces/surface_sequence.h"
+#include "cc/surfaces/surfaces_export.h"
+#include "ui/gfx/geometry/size.h"
+
+namespace ui {
+struct LatencyInfo;
+}
+
+namespace cc {
+class CompositorFrame;
+class CopyOutputRequest;
+class SurfaceManager;
+class SurfaceFactory;
+class SurfaceResourceHolder;
+
+class CC_SURFACES_EXPORT Surface {
+ public:
+ using DrawCallback = SurfaceFactory::DrawCallback;
+
+ Surface(SurfaceId id, SurfaceFactory* factory);
+ ~Surface();
+
+ SurfaceId surface_id() const { return surface_id_; }
+
+ void QueueFrame(scoped_ptr<CompositorFrame> frame,
+ const DrawCallback& draw_callback);
+ void RequestCopyOfOutput(scoped_ptr<CopyOutputRequest> copy_request);
+ // Adds each CopyOutputRequest in the current frame to copy_requests. The
+ // caller takes ownership of them.
+ void TakeCopyOutputRequests(
+ std::multimap<RenderPassId, CopyOutputRequest*>* copy_requests);
+ // Returns the most recent frame that is eligible to be rendered.
+ const CompositorFrame* GetEligibleFrame();
+
+ // Returns a number that increments by 1 every time a new frame is enqueued.
+ int frame_index() const { return frame_index_; }
+
+ void TakeLatencyInfo(std::vector<ui::LatencyInfo>* latency_info);
+ void RunDrawCallbacks(SurfaceDrawStatus drawn);
+
+ base::WeakPtr<SurfaceFactory> factory() { return factory_; }
+
+ // Add a SurfaceSequence that must be satisfied before the Surface is
+ // destroyed.
+ void AddDestructionDependency(SurfaceSequence sequence);
+
+ // Satisfy all destruction dependencies that are contained in sequences, and
+ // remove them from sequences.
+ void SatisfyDestructionDependencies(
+ base::hash_set<SurfaceSequence>* sequences);
+ size_t GetDestructionDependencyCount() const {
+ return destruction_dependencies_.size();
+ }
+
+ private:
+ void ClearCopyRequests();
+
+ SurfaceId surface_id_;
+ base::WeakPtr<SurfaceFactory> factory_;
+ // TODO(jamesr): Support multiple frames in flight.
+ scoped_ptr<CompositorFrame> current_frame_;
+ int frame_index_;
+ std::vector<SurfaceSequence> destruction_dependencies_;
+
+ DrawCallback draw_callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(Surface);
+};
+
+} // namespace cc
+
+#endif // CC_SURFACES_SURFACE_H_
« no previous file with comments | « cc/surfaces/onscreen_display_client.cc ('k') | cc/surfaces/surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698