- 添加 D3D12CommandList.h 头文件,包含 Viewport、Rect、ResourceBarrierDesc 结构体 - 实现 ID3D12GraphicsCommandList 封装 - 实现所有渲染命令:TransitionBarrier、UAVBarrier、AliasBarrier - 实现状态追踪和资源追踪 - 添加到 CMakeLists.txt 构建系统 - 修复 tests/D3D12/run.bat 路径问题
6 lines
190 B
Batchfile
6 lines
190 B
Batchfile
@echo off
|
|
cd /d "%~dp0..\..\..\..\build\tests\D3D12\Debug"
|
|
if exist "D3D12_engine_log.txt" del "D3D12_engine_log.txt"
|
|
D3D12.exe
|
|
python "%~dp0compare_ppm.py" "screenshot.ppm" "GT.ppm" 5
|
|
pause |