diff options
| author | Tilka <tilkax@gmail.com> | 2024-08-16 20:04:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-16 20:04:45 +0100 |
| commit | 07557e5d9c2cb73c677ba7c41edc6c644b07ca3c (patch) | |
| tree | 9dad5d794c2a22d785a0afddd3b29aae9bcad33b /Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | |
| parent | 45d6653a6d0e7724804cc45cb9e567148eeb6dfe (diff) | |
| parent | 309df9ed5bbfefc68fb0cf6285b41324961aebbc (diff) | |
Merge pull request #13015 from tygyh/Use-boolean-literals
Replace boolean constants with boolean literals
Diffstat (limited to 'Source/UnitTests/VideoCommon/VertexLoaderTest.cpp')
| -rw-r--r-- | Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index b7850e85a3..83b1f813da 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -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; |
