blob: d3a224ee1bb16f085bbcacc4c4a76efd2bcb4712 [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.
*/
#include "src/gpu/gl/GrGLSemaphore.h"
#include "src/gpu/gl/GrGLGpu.h"
GrGLSemaphore::GrGLSemaphore(GrGLGpu* gpu, bool isOwned)
: INHERITED(gpu), fSync(0), fIsOwned(isOwned) {
isOwned ? this->registerWithCache(SkBudgeted::kNo)
: this->registerWithCacheWrapped(GrWrapCacheable::kNo);
}
void GrGLSemaphore::onRelease() {
if (fSync && fIsOwned) {
static_cast<const GrGLGpu*>(this->getGpu())->deleteSync(fSync);
}
fSync = 0;
INHERITED::onRelease();
}
void GrGLSemaphore::onAbandon() {
fSync = 0;
INHERITED::onAbandon();
}