- Fix SetGraphicsRootDescriptorTable call order (SetRootSignature before SetPipelineState) - Rename texture earth_d.jpg -> earth.png - Fix vertex order for TriangleStrip quad rendering - Add integration test README - Add debug logging to D3D12Screenshot - Remove obsolete run.bat
13 lines
223 B
CMake
13 lines
223 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(D3D12_Integration)
|
|
|
|
find_package(Python3 REQUIRED)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(minimal)
|
|
add_subdirectory(triangle)
|
|
add_subdirectory(quad)
|
|
add_subdirectory(render_model)
|