FCT
载入中...
搜索中...
未找到
VK_DescriptorPool.h
浏览该文件的文档.
1//
2// Created by Administrator on 2025/4/14.
3//
4#include "DescriptorPool.h"
5#ifndef VK_DESCRIPTORPOOL_H
6#define VK_DESCRIPTORPOOL_H
7namespace FCT
8{
9 namespace RHI
10 {
12 public:
14 void create();
15 vk::DescriptorPool& getPool() { return m_descriptorPool; }
16 protected:
18 vk::DescriptorPool m_descriptorPool;
19 };
20
21 }
22}
23
24
25
26#endif //VK_DESCRIPTORPOOL_H