Replace boolean constants with boolean literals

This commit is contained in:
Dr. Dystopia 2024-07-28 22:28:58 +02:00
parent 5af0ae25e6
commit 309df9ed5b
4 changed files with 21 additions and 21 deletions

View file

@ -316,15 +316,15 @@ TEST_P(VertexLoaderSpeedTest, TexCoordSingleElement)
TEST_F(VertexLoaderTest, LargeFloatVertexSpeed)
{
// Enables most attributes in floating point indexed mode to test speed.
m_vtx_desc.low.PosMatIdx = 1;
m_vtx_desc.low.Tex0MatIdx = 1;
m_vtx_desc.low.Tex1MatIdx = 1;
m_vtx_desc.low.Tex2MatIdx = 1;
m_vtx_desc.low.Tex3MatIdx = 1;
m_vtx_desc.low.Tex4MatIdx = 1;
m_vtx_desc.low.Tex5MatIdx = 1;
m_vtx_desc.low.Tex6MatIdx = 1;
m_vtx_desc.low.Tex7MatIdx = 1;
m_vtx_desc.low.PosMatIdx = true;
m_vtx_desc.low.Tex0MatIdx = true;
m_vtx_desc.low.Tex1MatIdx = true;
m_vtx_desc.low.Tex2MatIdx = true;
m_vtx_desc.low.Tex3MatIdx = true;
m_vtx_desc.low.Tex4MatIdx = true;
m_vtx_desc.low.Tex5MatIdx = true;
m_vtx_desc.low.Tex6MatIdx = true;
m_vtx_desc.low.Tex7MatIdx = true;
m_vtx_desc.low.Position = VertexComponentFormat::Index16;
m_vtx_desc.low.Normal = VertexComponentFormat::Index16;
m_vtx_desc.low.Color0 = VertexComponentFormat::Index16;
@ -379,15 +379,15 @@ TEST_F(VertexLoaderTest, LargeFloatVertexSpeed)
TEST_F(VertexLoaderTest, DirectAllComponents)
{
m_vtx_desc.low.PosMatIdx = 1;
m_vtx_desc.low.Tex0MatIdx = 1;
m_vtx_desc.low.Tex1MatIdx = 1;
m_vtx_desc.low.Tex2MatIdx = 1;
m_vtx_desc.low.Tex3MatIdx = 1;
m_vtx_desc.low.Tex4MatIdx = 1;
m_vtx_desc.low.Tex5MatIdx = 1;
m_vtx_desc.low.Tex6MatIdx = 1;
m_vtx_desc.low.Tex7MatIdx = 1;
m_vtx_desc.low.PosMatIdx = true;
m_vtx_desc.low.Tex0MatIdx = true;
m_vtx_desc.low.Tex1MatIdx = true;
m_vtx_desc.low.Tex2MatIdx = true;
m_vtx_desc.low.Tex3MatIdx = true;
m_vtx_desc.low.Tex4MatIdx = true;
m_vtx_desc.low.Tex5MatIdx = true;
m_vtx_desc.low.Tex6MatIdx = true;
m_vtx_desc.low.Tex7MatIdx = true;
m_vtx_desc.low.Position = VertexComponentFormat::Direct;
m_vtx_desc.low.Normal = VertexComponentFormat::Direct;
m_vtx_desc.low.Color0 = VertexComponentFormat::Direct;