From 0bdde56ad6fcf934295e7c8d854296bad18b3bb1 Mon Sep 17 00:00:00 2001 From: Andrew Richards Date: Tue, 10 Sep 2024 14:58:05 +0100 Subject: [PATCH] Fixed compilation error in Test.cpp. --- Applications/Test/Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Test/Test.cpp b/Applications/Test/Test.cpp index d673843d..e34abc5a 100644 --- a/Applications/Test/Test.cpp +++ b/Applications/Test/Test.cpp @@ -482,7 +482,7 @@ class PlatformRenderer : public crossplatform::RenderDelegatorInterface crossplatform::EffectTechnique* fibonacci = test->GetTechniqueByName("test_fibonacci"); crossplatform::ShaderResource res = test->GetShaderResource("rwSB"); - rwSB.ApplyAsUnorderedAccessView(deviceContext, test, res); + rwSB.ApplyAsUnorderedAccessView(deviceContext, res); renderPlatform->ApplyPass(deviceContext, fibonacci->GetPass(0)); renderPlatform->DispatchCompute(deviceContext, 1, 1, 1); renderPlatform->UnapplyPass(deviceContext);