Merge pull request #9540 from Pokechu22/better-fifo-analyzer-part-2

Fifo analyzer quality of life improvements
This commit is contained in:
Mat M 2021-05-14 15:51:53 -04:00 committed by GitHub
commit d74a1068b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 918 additions and 816 deletions

View file

@ -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);
}