aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrResourceProvider.h
diff options
context:
space:
mode:
authorGravatar Greg Daniel <egdaniel@google.com>2018-01-09 13:55:33 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-09 19:22:27 +0000
commit17b7c054339dfa592571ebd92d2419949baca6f0 (patch)
tree2ecef7a4c9ccfb2edaf72dd5eb56b229ed29a2ca /src/gpu/GrResourceProvider.h
parente48eb337e1ff16bc0190a0562b01ea4cc9a84ccb (diff)
Update GrSemaphore to allow it to only be used once for signaling and once for waiting.
This is required for Vulkan which doesn't allow a semaphore to be waited on by multiple things at once or signaled from multiple places. Bug: skia: Change-Id: Iac0cb782a6662167c2cab1fd6a2c80378834a480 Reviewed-on: https://skia-review.googlesource.com/92601 Commit-Queue: Greg Daniel <egdaniel@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'src/gpu/GrResourceProvider.h')
-rw-r--r--src/gpu/GrResourceProvider.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gpu/GrResourceProvider.h b/src/gpu/GrResourceProvider.h
index 08da9ae0b0..bf7f28e93d 100644
--- a/src/gpu/GrResourceProvider.h
+++ b/src/gpu/GrResourceProvider.h
@@ -228,7 +228,13 @@ public:
sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true);
+ enum class SemaphoreWrapType {
+ kWillSignal,
+ kWillWait,
+ };
+
sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore&,
+ SemaphoreWrapType wrapType,
GrWrapOwnership = kBorrow_GrWrapOwnership);
// Takes the GrSemaphore and sets the ownership of the semaphore to the GrGpu object used by