mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-25 03:21:36 +02:00
Merge pull request #13023 from tygyh/Replace-ties-with-structured-bindings
UnitTests: Replace ties with structured bindings
This commit is contained in:
@ -553,11 +553,7 @@ INSTANTIATE_TEST_SUITE_P(
|
|||||||
|
|
||||||
TEST_P(VertexLoaderNormalTest, NormalAll)
|
TEST_P(VertexLoaderNormalTest, NormalAll)
|
||||||
{
|
{
|
||||||
VertexComponentFormat addr;
|
auto [addr, format, elements, index3] = GetParam();
|
||||||
ComponentFormat format;
|
|
||||||
NormalComponentCount elements;
|
|
||||||
bool index3;
|
|
||||||
std::tie(addr, format, elements, index3) = GetParam();
|
|
||||||
|
|
||||||
m_vtx_desc.low.Position = VertexComponentFormat::Direct;
|
m_vtx_desc.low.Position = VertexComponentFormat::Direct;
|
||||||
m_vtx_attr.g0.PosFormat = ComponentFormat::Float;
|
m_vtx_attr.g0.PosFormat = ComponentFormat::Float;
|
||||||
|
Reference in New Issue
Block a user