From 72917c8cd96834f741df20ce822803cf2bdf9739 Mon Sep 17 00:00:00 2001 From: assiduous Date: Fri, 19 Sep 2025 17:08:57 -0700 Subject: [PATCH 1/2] Appveyor: use WinSDK 10.0.19041.0 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d793ad1f..edfaf7bc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '2.5.{build}' +version: '2.6.{build}' # branches to build branches: @@ -41,7 +41,7 @@ before_build: - echo add_subdirectory(DiligentFX) >> CMakeLists.txt - echo add_subdirectory(DiligentSamples) >> CMakeLists.txt - echo %PLATFORM% - - cmake -S . -B ./build -D DILIGENT_MSVC_COMPILE_OPTIONS="/WX" -D DILIGENT_MSVC_RELEASE_COMPILE_OPTIONS="/arch:AVX2" -G "Visual Studio 16 2019" -A %PLATFORM% + - cmake -S . -B ./build -D DILIGENT_MSVC_COMPILE_OPTIONS="/WX" -D DILIGENT_MSVC_RELEASE_COMPILE_OPTIONS="/arch:AVX2" -D CMAKE_SYSTEM_VERSION=10.0.19041.0 -G "Visual Studio 16 2019" -A %PLATFORM% - nuget restore c:\projects\build\DiligentSamples_Test.sln build: From 86c2fb58c6fab1122e618ff6cd3d63489e1a1b81 Mon Sep 17 00:00:00 2001 From: assiduous Date: Fri, 19 Sep 2025 17:09:17 -0700 Subject: [PATCH 2/2] Tutorial 14: fixes typo in readme --- Tutorials/Tutorial14_ComputeShader/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tutorials/Tutorial14_ComputeShader/readme.md b/Tutorials/Tutorial14_ComputeShader/readme.md index 1ce6af70..e8da4798 100644 --- a/Tutorials/Tutorial14_ComputeShader/readme.md +++ b/Tutorials/Tutorial14_ComputeShader/readme.md @@ -408,7 +408,7 @@ PSODesc.ResourceLayout.Variables = Vars; PSODesc.ResourceLayout.NumVariables = _countof(Vars); PSOCreateInfo.pCS = pResetParticleListsCS; -m_pDevice->CreateGraphicsPipelineState(PSOCreateInfo, &m_pResetParticleListsPSO); +m_pDevice->CreateComputePipelineState(PSOCreateInfo, &m_pResetParticleListsPSO); m_pResetParticleListsPSO->GetStaticVariableByName(SHADER_TYPE_COMPUTE, "Constants")->Set(m_Constants); ```