aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private/SkGpuFenceSync.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-07-01 11:55:42 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-01 11:55:42 -0700
commit928e16565f3e69cd6661e9ad300ac17e3f33c0c8 (patch)
tree919a82a34f8dba53523ac8a21b168f9895c176b0 /include/private/SkGpuFenceSync.h
parentebaf6a69bf604c85185e23aca3fb93308e747ff5 (diff)
Move headers used by headers in include/ to include/private.
Some of this is transitive, like SkRecords.h used by SkMiniRecorder.h used by (public) SkPictureRecorder.h. BUG=skia: Committed: https://skia.googlesource.com/skia/+/a89f55198bdc58f0b6f6196907ab25a6afc1a661 Review URL: https://codereview.chromium.org/1217293004
Diffstat (limited to 'include/private/SkGpuFenceSync.h')
-rw-r--r--include/private/SkGpuFenceSync.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/private/SkGpuFenceSync.h b/include/private/SkGpuFenceSync.h
new file mode 100644
index 0000000000..b78398fed8
--- /dev/null
+++ b/include/private/SkGpuFenceSync.h
@@ -0,0 +1,29 @@
+
+/*
+ * Copyright 2015 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#ifndef SkGpuFenceSync_DEFINED
+#define SkGpuFenceSync_DEFINED
+
+#include "SkTypes.h"
+
+typedef void* SkPlatformGpuFence;
+
+/*
+ * This class provides an interface to interact with fence syncs. A fence sync is an object that the
+ * client can insert into the GPU command stream, and then at any future time, wait until all
+ * commands that were issued before the fence have completed.
+ */
+class SkGpuFenceSync {
+public:
+ virtual SkPlatformGpuFence SK_WARN_UNUSED_RESULT insertFence() const = 0;
+ virtual bool flushAndWaitFence(SkPlatformGpuFence) const = 0;
+ virtual void deleteFence(SkPlatformGpuFence) const = 0;
+
+ virtual ~SkGpuFenceSync() {}
+};
+
+#endif