File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -970,7 +970,8 @@ Result RenderTestApp::update()
970
970
if (m_options.shaderType == Options::ShaderProgramType::Compute)
971
971
{
972
972
auto passEncoder = encoder->beginComputePass ();
973
- auto rootObject = passEncoder->bindPipeline (static_cast <IComputePipeline*>(m_pipeline.get ()));
973
+ auto rootObject =
974
+ passEncoder->bindPipeline (static_cast <IComputePipeline*>(m_pipeline.get ()));
974
975
applyBinding (rootObject);
975
976
passEncoder->dispatchCompute (
976
977
m_options.computeDispatchSize [0 ],
@@ -994,7 +995,8 @@ Result RenderTestApp::update()
994
995
renderPass.depthStencilAttachment = &depthStencilAttachment;
995
996
996
997
auto passEncoder = encoder->beginRenderPass (renderPass);
997
- auto rootObject = passEncoder->bindPipeline (static_cast <IRenderPipeline*>(m_pipeline.get ()));
998
+ auto rootObject =
999
+ passEncoder->bindPipeline (static_cast <IRenderPipeline*>(m_pipeline.get ()));
998
1000
applyBinding (rootObject);
999
1001
setProjectionMatrix (rootObject);
1000
1002
You can’t perform that action at this time.
0 commit comments