aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private/SkGpuFenceSync.h
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@google.com>2015-07-01 16:35:59 -0400
committerGravatar Mike Klein <mtklein@google.com>2015-07-01 16:35:59 -0400
commit478c9e4851eff5feb74dd2f8a14143bec569e1a8 (patch)
tree9acb07514c74296fe7b2b9dd17fa8a6ed907cf30 /include/private/SkGpuFenceSync.h
parentaa2a7de0ffaf8f864a7afc68bbd34ccb25876246 (diff)
Revert "Move headers used by headers in include/ to include/private."
Diffstat (limited to 'include/private/SkGpuFenceSync.h')
-rw-r--r--include/private/SkGpuFenceSync.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/private/SkGpuFenceSync.h b/include/private/SkGpuFenceSync.h
deleted file mode 100644
index b78398fed8..0000000000
--- a/include/private/SkGpuFenceSync.h
+++ /dev/null
@@ -1,29 +0,0 @@
-
-/*
- * 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