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

Unified Diff: cc/resources/sync_point_helper.cc

Issue 14126014: Add signalSyncPoint to the WebGraphicsContext3D command buffer impls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removedusing Created 7 years, 8 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: cc/resources/sync_point_helper.cc
diff --git a/cc/resources/sync_point_helper.cc b/cc/resources/sync_point_helper.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c398eb6761d43d08db56f943c7058f76ebab3382
--- /dev/null
+++ b/cc/resources/sync_point_helper.cc
@@ -0,0 +1,37 @@
+// Copyright 2013 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.
+
+#include "cc/resources/sync_point_helper.h"
+
+#include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3D.h"
+
+namespace cc {
+
+class SignalSyncPointCallbackClass
+ : public WebKit::WebGraphicsContext3D::WebGraphicsSyncPointCallback {
+ public:
+ explicit SignalSyncPointCallbackClass(const base::Closure& closure)
+ : closure_(closure) {}
+
+ virtual void onSyncPointReached() {
+ if (!closure_.is_null())
+ closure_.Run();
+ }
+
+ private:
+ base::Closure closure_;
+};
+
+void SyncPointHelper::SignalSyncPoint(
+ WebKit::WebGraphicsContext3D* context3d,
+ unsigned sync_point,
+ const base::Closure& closure) {
+ SignalSyncPointCallbackClass* callback_class =
+ new SignalSyncPointCallbackClass(closure);
+
+ // Pass ownership of the CallbackClass to WebGraphicsContext3D.
+ context3d->signalSyncPoint(sync_point, callback_class);
+}
+
+} // namespace cc
« no previous file with comments | « cc/resources/sync_point_helper.h ('k') | content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698