blob: e2a284e0d1d4e5154759897e286252c2273d7512 [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.
*/
#ifndef GrVkDescriptorSet_DEFINED
#define GrVkDescriptorSet_DEFINED
#include "include/private/base/SkDebug.h"
#include "include/private/gpu/vk/SkiaVulkan.h"
#include "src/gpu/ganesh/GrManagedResource.h"
#include "src/gpu/ganesh/vk/GrVkDescriptorSetManager.h"
#include "src/gpu/ganesh/vk/GrVkManagedResource.h"
#include <stdint.h>
#include <cinttypes>
class GrVkDescriptorPool;
class GrVkGpu;
class GrVkDescriptorSet : public GrVkRecycledResource {
public:
GrVkDescriptorSet(GrVkGpu* gpu,
VkDescriptorSet descSet,
GrVkDescriptorPool* pool,
GrVkDescriptorSetManager::Handle handle);
~GrVkDescriptorSet() override {}
const VkDescriptorSet* descriptorSet() const { return &fDescSet; }
#ifdef SK_TRACE_MANAGED_RESOURCES
void dumpInfo() const override {
SkDebugf("GrVkDescriptorSet: %" PRIdPTR " (%d refs)\n", (intptr_t)fDescSet,
this->getRefCnt());
}
#endif
private:
void freeGPUData() const override;
void onRecycle() const override;
VkDescriptorSet fDescSet;
SkDEBUGCODE(mutable) GrVkDescriptorPool* fPool;
GrVkDescriptorSetManager::Handle fHandle;
using INHERITED = GrVkRecycledResource;
};
#endif