blob: 4a662aa6a98ad1dada4eb6b17cde9f6ca6dd4925 [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrVkDescriptorSet.h"
#include "GrVkDescriptorPool.h"
#include "GrVkGpu.h"
#include "GrVkResourceProvider.h"
GrVkDescriptorSet::GrVkDescriptorSet(VkDescriptorSet descSet,
GrVkDescriptorPool* pool,
GrVkDescriptorSetManager::Handle handle)
: fDescSet(descSet)
, fPool(pool)
, fHandle(handle) {
fPool->ref();
}
void GrVkDescriptorSet::freeGPUData(GrVkGpu* gpu) const {
fPool->unref(gpu);
}
void GrVkDescriptorSet::onRecycle(GrVkGpu* gpu) const {
gpu->resourceProvider().recycleDescriptorSet(this, fHandle);
}
void GrVkDescriptorSet::abandonGPUData() const {
fPool->unrefAndAbandon();
}