summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestTextureCreation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestApp/src/TestTextureCreation.cpp')
-rw-r--r--Tests/TestApp/src/TestTextureCreation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/TestApp/src/TestTextureCreation.cpp b/Tests/TestApp/src/TestTextureCreation.cpp
index 3dc0e6b..b687121 100644
--- a/Tests/TestApp/src/TestTextureCreation.cpp
+++ b/Tests/TestApp/src/TestTextureCreation.cpp
@@ -734,7 +734,7 @@ void TestTextureCreation::CheckFormatSize(TEXTURE_FORMAT *begin, TEXTURE_FORMAT
for(auto fmt = begin; fmt != end; ++fmt)
{
auto FmtAttrs = m_pDevice->GetTextureFormatInfo(*fmt);
- assert(Uint32{FmtAttrs.ComponentSize} * Uint32{FmtAttrs.NumComponents} == RefSize);
+ assert(Uint32{FmtAttrs.ComponentSize} * Uint32{FmtAttrs.NumComponents} == RefSize); (void)FmtAttrs;
}
}
@@ -743,7 +743,7 @@ void TestTextureCreation::CheckNumComponents(TEXTURE_FORMAT *begin, TEXTURE_FORM
for(auto fmt = begin; fmt != end; ++fmt)
{
auto FmtAttrs = m_pDevice->GetTextureFormatInfo(*fmt);
- assert(FmtAttrs.NumComponents == RefComponents);
+ assert(FmtAttrs.NumComponents == RefComponents); (void)FmtAttrs;
}
}
@@ -752,7 +752,7 @@ void TestTextureCreation::CheckComponentType(TEXTURE_FORMAT *begin, TEXTURE_FORM
for(auto fmt = begin; fmt != end; ++fmt)
{
auto FmtAttrs = m_pDevice->GetTextureFormatInfo(*fmt);
- assert(FmtAttrs.ComponentType == RefType);
+ assert(FmtAttrs.ComponentType == RefType); (void)FmtAttrs;
}
}