Skip to content

Commit 4363d21

Browse files
committed
fix formatting
1 parent d517d19 commit 4363d21

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/render-test/render-test-main.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,8 @@ Result RenderTestApp::update()
970970
if (m_options.shaderType == Options::ShaderProgramType::Compute)
971971
{
972972
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()));
974975
applyBinding(rootObject);
975976
passEncoder->dispatchCompute(
976977
m_options.computeDispatchSize[0],
@@ -994,7 +995,8 @@ Result RenderTestApp::update()
994995
renderPass.depthStencilAttachment = &depthStencilAttachment;
995996

996997
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()));
9981000
applyBinding(rootObject);
9991001
setProjectionMatrix(rootObject);
10001002

0 commit comments

Comments
 (0)