blob: d90a498c40fb7c11f37e571acbfb1d2285d5204b [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrVkSemaphore_DEFINED
#define GrVkSemaphore_DEFINED
#include "GrSemaphore.h"
#include "GrResourceProvider.h"
#include "GrVkResource.h"
#include "vk/GrVkTypes.h"
class GrBackendSemaphore;
class GrVkGpu;
class GrVkSemaphore : public GrSemaphore {
public:
static sk_sp<GrVkSemaphore> Make(GrVkGpu* gpu, bool isOwned);
using WrapType = GrResourceProvider::SemaphoreWrapType;
static sk_sp<GrVkSemaphore> MakeWrapped(GrVkGpu* gpu,
VkSemaphore semaphore,
WrapType wrapType,
GrWrapOwnership);
GrBackendSemaphore backendSemaphore() const override;
class Resource : public GrVkResource {
public:
Resource(VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait, bool isOwned)
: INHERITED()
, fSemaphore(semaphore)
, fHasBeenSubmittedToQueueForSignal(prohibitSignal)
, fHasBeenSubmittedToQueueForWait(prohibitWait)
, fIsOwned(isOwned) {}
~Resource() override {}
VkSemaphore semaphore() const { return fSemaphore; }
static void AcquireMutex() { GetMutex()->acquire(); }
static void ReleaseMutex() { GetMutex()->release(); }
bool shouldSignal() const {
return !fHasBeenSubmittedToQueueForSignal;
}
bool shouldWait() const {
return !fHasBeenSubmittedToQueueForWait;
}
void markAsSignaled() {
GetMutex()->assertHeld();
fHasBeenSubmittedToQueueForSignal = true;
}
void markAsWaited() {
GetMutex()->assertHeld();
fHasBeenSubmittedToQueueForWait = true;
}
#ifdef SK_TRACE_VK_RESOURCES
void dumpInfo() const override {
SkDebugf("GrVkSemaphore: %d (%d refs)\n", fSemaphore, this->getRefCnt());
}
#endif
private:
void freeGPUData(GrVkGpu* gpu) const override;
static SkMutex* GetMutex() {
static SkMutex kMutex;
return &kMutex;
}
VkSemaphore fSemaphore;
bool fHasBeenSubmittedToQueueForSignal;
bool fHasBeenSubmittedToQueueForWait;
bool fIsOwned;
typedef GrVkResource INHERITED;
};
Resource* getResource() { return fResource; }
private:
GrVkSemaphore(GrVkGpu* gpu, VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait,
bool isOwned);
void onRelease() override;
void onAbandon() override;
Resource* fResource;
typedef GrSemaphore INHERITED;
};
#endif