From caf113d2472d0a3e95211c553dc99a7751cbcddd Mon Sep 17 00:00:00 2001 From: Andrew Richards Date: Wed, 11 Sep 2024 08:24:08 +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 e34abc5a..4b39daf3 100644 --- a/Applications/Test/Test.cpp +++ b/Applications/Test/Test.cpp @@ -545,7 +545,7 @@ class PlatformRenderer : public crossplatform::RenderDelegatorInterface crossplatform::ShaderResource res_rwImage = test->GetShaderResource("rwImage"); renderPlatform->ApplyPass(deviceContext, tvtestcard->GetPass(0)); - roSB.Apply(deviceContext, test, res_roSB); + roSB.Apply(deviceContext, res_roSB); renderPlatform->SetUnorderedAccessView(deviceContext, res_rwImage, texture); renderPlatform->DispatchCompute(deviceContext, texture->width/32, texture->length/32, 1); renderPlatform->UnapplyPass(deviceContext);