From 5a116d0bb5971848235ddd72915520f852c43ba2 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 24 Oct 2019 23:57:11 -0700 Subject: Fixed a number of clang warning to reduce the log size and fix travis build error --- Tests/TestApp/src/TestDepthStencilState.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Tests/TestApp/src/TestDepthStencilState.cpp') diff --git a/Tests/TestApp/src/TestDepthStencilState.cpp b/Tests/TestApp/src/TestDepthStencilState.cpp index 6127562..8127f12 100644 --- a/Tests/TestApp/src/TestDepthStencilState.cpp +++ b/Tests/TestApp/src/TestDepthStencilState.cpp @@ -40,6 +40,9 @@ void TestDepthStencilState::CreateTestDSS( DepthStencilStateDesc &DSSDesc ) pPSO->CreateShaderResourceBinding(&pSRB); auto PSVarCount = pSRB->GetVariableCount(SHADER_TYPE_PIXEL); auto VSVarCount = pSRB->GetVariableCount(SHADER_TYPE_VERTEX); + (void)PSVarCount; + (void)VSVarCount; + #if 0 DSSDesc.Name = "TestDSS2"; m_pDevice->CreateDepthStencilState( DSSDesc, &pDSState2 ); -- cgit v1.2.3