Skip to content

Commit c9e729d

Browse files
committed
fix fmt
1 parent 4c67285 commit c9e729d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Tests/DiligentCoreAPITest/src/Vulkan/VkConvertUBOToPushConstantsTest.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -294,11 +294,11 @@ std::vector<unsigned int> LoadSPIRVFromGLSL(const std::string& ShaderSource, SHA
294294
}
295295

296296
GLSLangUtils::GLSLtoSPIRVAttribs Attribs;
297-
Attribs.ShaderType = ShaderType;
298-
Attribs.ShaderSource = ShaderSource.data();
299-
Attribs.SourceCodeLen = static_cast<int>(ShaderSource.size());
300-
Attribs.Version = Version;
301-
Attribs.AssignBindings = true;
297+
Attribs.ShaderType = ShaderType;
298+
Attribs.ShaderSource = ShaderSource.data();
299+
Attribs.SourceCodeLen = static_cast<int>(ShaderSource.size());
300+
Attribs.Version = Version;
301+
Attribs.AssignBindings = true;
302302

303303
return GLSLangUtils::GLSLtoSPIRV(Attribs);
304304
}

Tests/GPUTestFramework/include/TestingSwapChainBase.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class ITestingSwapChain : public IObject
7474

7575
virtual void DumpBackBuffer(const char* FileName) = 0;
7676

77-
virtual void CompareWithSnapshot(ITexture* pTexture) = 0;
77+
virtual void CompareWithSnapshot(ITexture* pTexture) = 0;
7878

7979
virtual void NativeDrawCompareWithSnapshot(ITexture* pTexture) = 0;
8080
};

Tests/GPUTestFramework/src/D3D12/TestingSwapChainD3D12.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ void TestingSwapChainD3D12::TakeSnapshot(ITexture* pCopyFrom)
259259

260260
void TestingSwapChainD3D12::NativeDrawCompareWithSnapshot(ITexture* pTexture)
261261
{
262-
//NOT IMPL YET
262+
//NOT IMPL YET
263263
}
264264

265265
void CreateTestingSwapChainD3D12(IRenderDevice* pDevice,

0 commit comments

Comments
 (0)