summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestShaderVarAccess.cpp
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-29 15:18:40 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-29 15:18:40 +0000
commit9c9771ba1586594c4021c3088055a397823e6742 (patch)
tree335bc01707deb60c67f210038768c08a0c406fd1 /Tests/TestApp/src/TestShaderVarAccess.cpp
parentFixed few clang warnings (diff)
downloadDiligentEngine-9c9771ba1586594c4021c3088055a397823e6742.tar.gz
DiligentEngine-9c9771ba1586594c4021c3088055a397823e6742.zip
Fixed few compiler warnings
Diffstat (limited to 'Tests/TestApp/src/TestShaderVarAccess.cpp')
-rw-r--r--Tests/TestApp/src/TestShaderVarAccess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/TestApp/src/TestShaderVarAccess.cpp b/Tests/TestApp/src/TestShaderVarAccess.cpp
index 6b54846..5be5169 100644
--- a/Tests/TestApp/src/TestShaderVarAccess.cpp
+++ b/Tests/TestApp/src/TestShaderVarAccess.cpp
@@ -612,7 +612,7 @@ TestShaderVarAccess::TestShaderVarAccess( IRenderDevice *pDevice, IDeviceContext
VERIFY_EXPR(pVar->GetIndex() == v);
VERIFY_EXPR(pVar->GetType() == SHADER_RESOURCE_VARIABLE_TYPE_MUTABLE || pVar->GetType() == SHADER_RESOURCE_VARIABLE_TYPE_DYNAMIC);
auto pVar2 = pSRB->GetVariableByName(SHADER_TYPE_PIXEL, pVar->GetResourceDesc().Name);
- VERIFY_EXPR(pVar == pVar2);
+ VERIFY_EXPR(pVar == pVar2); (void)pVar2; (void)pVar;
}
}