diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2021-03-11 12:55:25 -0800 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2021-05-07 15:42:17 -0700 |
| commit | 0a906f553fe7699d1c863a464211f74b6c306a0f (patch) | |
| tree | 6cdb16eb84765bec99bf418c75b753b7324844ce /Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | |
| parent | fa7077763f91980e372d502b4357f3dda971ffbe (diff) | |
Move vertex size and component calculation to VertexLoaderBase
Diffstat (limited to 'Source/UnitTests/VideoCommon/VertexLoaderTest.cpp')
| -rw-r--r-- | Source/UnitTests/VideoCommon/VertexLoaderTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp index 7f9dbdec84..925a13114a 100644 --- a/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp +++ b/Source/UnitTests/VideoCommon/VertexLoaderTest.cpp @@ -62,7 +62,7 @@ protected: void CreateAndCheckSizes(size_t input_size, size_t output_size) { m_loader = VertexLoaderBase::CreateVertexLoader(m_vtx_desc, m_vtx_attr); - ASSERT_EQ((int)input_size, m_loader->m_VertexSize); + ASSERT_EQ(input_size, m_loader->m_vertex_size); ASSERT_EQ((int)output_size, m_loader->m_native_vtx_decl.stride); } |
