18 lines
367 B
Markdown
18 lines
367 B
Markdown
|
|
# D3D12Device::CreateCommandQueueImpl
|
||
|
|
|
||
|
|
内部创建命令队列。
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
D3D12CommandQueue* CreateCommandQueueImpl(const CommandQueueDesc& desc);
|
||
|
|
```
|
||
|
|
|
||
|
|
**参数:**
|
||
|
|
- `desc` - 命令队列描述
|
||
|
|
|
||
|
|
**返回:** `D3D12CommandQueue*` - 创建的命令队列指针
|
||
|
|
|
||
|
|
## 相关文档
|
||
|
|
|
||
|
|
- [D3D12Device 总览](d3d12-device.md)
|
||
|
|
- [D3D12CommandQueue](d3d12-command-queue.md)
|