Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tutorials/Tutorial14_ComputeShader/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
```

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '2.5.{build}'
version: '2.6.{build}'

# branches to build
branches:
Expand Down Expand Up @@ -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:
Expand Down
Loading