Home
last modified time | relevance | path

Searched refs:GpuResourceManagerTyped (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H A Dgpu_resource_manager_base.h46 class GpuResourceManagerTyped final : GpuResourceManagerBase {
48 explicit GpuResourceManagerTyped(Device& device);
49 virtual ~GpuResourceManagerTyped() = default;
51 GpuResourceManagerTyped(const GpuResourceManagerTyped&) = delete;
52 GpuResourceManagerTyped& operator=(const GpuResourceManagerTyped&) = delete;
H A Dgpu_resource_manager_base.inl28 inline GpuResourceManagerTyped<ResourceType, CreateInfoType>::GpuResourceManagerTyped(Device& devic…
32 inline ResourceType* GpuResourceManagerTyped<ResourceType, CreateInfoType>::Get(const uint32_t inde…
43 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::Create(const uint32_t index,
85 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::HandlePendingDeallocations()
99 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::HandlePendingDeallocationsImmedi…
105 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::Destroy(const uint32_t index)
114 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::DestroyImmediate(const uint32_t …
123 inline void GpuResourceManagerTyped<ResourceType, CreateInfoType>::Resize(const size_t maxSize)
133 size_t GpuResourceManagerTyped<ResourceType, CreateInfoType>::GetValidResourceCount() const
H A Dgpu_resource_manager.h46 class GpuResourceManagerTyped; variable
381 BASE_NS::unique_ptr<GpuResourceManagerTyped<GpuBuffer, GpuBufferDesc>> gpuBufferMgr_;
382 BASE_NS::unique_ptr<GpuResourceManagerTyped<GpuImage, GpuImageDesc>> gpuImageMgr_;
383 BASE_NS::unique_ptr<GpuResourceManagerTyped<GpuSampler, GpuSamplerDesc>> gpuSamplerMgr_;
H A Dgpu_resource_manager.cpp371 gpuBufferMgr_(make_unique<GpuResourceManagerTyped<GpuBuffer, GpuBufferDesc>>(device)), in GpuResourceManager()
372 gpuImageMgr_(make_unique<GpuResourceManagerTyped<GpuImage, GpuImageDesc>>(device)), in GpuResourceManager()
373 gpuSamplerMgr_(make_unique<GpuResourceManagerTyped<GpuSampler, GpuSamplerDesc>>(device)) in GpuResourceManager()