docs: update resources API docs

This commit is contained in:
2026-03-20 02:35:35 +08:00
parent fd792b7df1
commit ea756c0177
314 changed files with 9439 additions and 1360 deletions

View File

@@ -0,0 +1,33 @@
# ShaderLoader::~ShaderLoader
## 方法签名
```cpp
virtual ~ShaderLoader() override;
```
## 详细描述
析构函数,用于销毁 `ShaderLoader` 对象。该析构函数不执行任何特殊清理操作。
## 参数
## 示例
```cpp
#include "Resources/ShaderLoader.h"
using namespace XCEngine::Resources;
{
ShaderLoader loader;
// 使用 loader...
}
// loader 在此自动销毁
```
## 相关文档
- [ShaderLoader 总览](../../../rhi/d3d12/fence/index.md) - 返回类总览