Merge pull request #13015 from tygyh/Use-boolean-literals

Replace boolean constants with boolean literals
This commit is contained in:
Tilka 2024-08-16 20:04:45 +01:00 committed by GitHub
commit 07557e5d9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;