Files
XCSDD/docs/api/rhi/d3d12/texture/initialize-depth-stencil.md
ssdfasd 58a83f445a fix: improve doc link navigation and tree display
- Fix link resolution with proper relative/absolute path handling
- Improve link styling with underline decoration
- Hide leaf nodes from tree, only show directories
- Fix log file path for packaged app
2026-03-19 12:44:08 +08:00

39 lines
748 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# D3D12Texture::InitializeDepthStencil
## 函数签名
```cpp
bool InitializeDepthStencil(ID3D12Device* device, uint32_t width, uint32_t height, DXGI_FORMAT format = DXGI_FORMAT_D24_UNORM_S8_UINT)
```
## 中文描述
初始化深度模板纹理。
## 参数
| 参数 | 类型 | 描述 |
|------|------|------|
| `device` | `ID3D12Device*` | D3D12 设备指针 |
| `width` | `uint32_t` | 纹理宽度 |
| `height` | `uint32_t` | 纹理高度 |
| `format` | `DXGI_FORMAT` | 深度格式(默认 D24_UNORM_S8_UINT |
## 返回值
`bool` - 初始化是否成功
## 复杂度
O(n) - 取决于纹理大小
## 示例
```cpp
texture->InitializeDepthStencil(device, 1920, 1080);
```
## 相关文档
- [D3D12Texture](texture.md) - 类总览