/* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include #include "Magnum/Math/Vector3.h" #include "Magnum/MeshTools/Interleave.h" #include "Magnum/Trade/MeshData.h" namespace Magnum { namespace MeshTools { namespace Test { namespace { struct InterleaveTest: Corrade::TestSuite::Tester { explicit InterleaveTest(); void attributeCount(); void attributeCountGaps(); void stride(); void strideGaps(); void write(); void writeGaps(); void interleaveInto(); void isInterleaved(); void isInterleavedEmpty(); void isInterleavedSingleAttribute(); void isInterleavedGaps(); void isInterleavedAliased(); void isInterleavedUnordered(); void isInterleavedAttributeAcrossStride(); void interleavedLayout(); void interleavedLayoutExtra(); void interleavedLayoutExtraAliased(); void interleavedLayoutExtraTooNegativePadding(); void interleavedLayoutExtraOnly(); void interleavedLayoutAlreadyInterleaved(); void interleavedLayoutAlreadyInterleavedAliased(); void interleavedLayoutAlreadyInterleavedExtra(); void interleavedLayoutNothing(); }; InterleaveTest::InterleaveTest() { addTests({&InterleaveTest::attributeCount, &InterleaveTest::attributeCountGaps, &InterleaveTest::stride, &InterleaveTest::strideGaps, &InterleaveTest::write, &InterleaveTest::writeGaps, &InterleaveTest::interleaveInto, &InterleaveTest::isInterleaved, &InterleaveTest::isInterleavedEmpty, &InterleaveTest::isInterleavedSingleAttribute, &InterleaveTest::isInterleavedGaps, &InterleaveTest::isInterleavedAliased, &InterleaveTest::isInterleavedUnordered, &InterleaveTest::isInterleavedAttributeAcrossStride, &InterleaveTest::interleavedLayout, &InterleaveTest::interleavedLayoutExtra, &InterleaveTest::interleavedLayoutExtraAliased, &InterleaveTest::interleavedLayoutExtraTooNegativePadding, &InterleaveTest::interleavedLayoutExtraOnly, &InterleaveTest::interleavedLayoutAlreadyInterleaved, &InterleaveTest::interleavedLayoutAlreadyInterleavedAliased, &InterleaveTest::interleavedLayoutAlreadyInterleavedExtra, &InterleaveTest::interleavedLayoutNothing}); } void InterleaveTest::attributeCount() { std::stringstream ss; Error redirectError{&ss}; CORRADE_COMPARE((Implementation::AttributeCount{}(std::vector{0, 1, 2}, std::vector{0, 1, 2, 3, 4, 5})), std::size_t(0)); CORRADE_COMPARE(ss.str(), "MeshTools::interleave(): attribute arrays don't have the same length, expected 3 but got 6\n"); CORRADE_COMPARE((Implementation::AttributeCount{}(std::vector{0, 1, 2}, std::vector{3, 4, 5})), std::size_t(3)); } void InterleaveTest::attributeCountGaps() { CORRADE_COMPARE((Implementation::AttributeCount{}(std::vector{0, 1, 2}, 3, std::vector{3, 4, 5}, 5)), std::size_t(3)); /* No arrays from which to get size */ CORRADE_COMPARE(Implementation::AttributeCount{}(3, 5), ~std::size_t(0)); } void InterleaveTest::stride() { CORRADE_COMPARE(Implementation::Stride{}(std::vector()), std::size_t(1)); CORRADE_COMPARE(Implementation::Stride{}(std::vector()), std::size_t(4)); CORRADE_COMPARE((Implementation::Stride{}(std::vector(), std::vector())), std::size_t(5)); } void InterleaveTest::strideGaps() { CORRADE_COMPARE((Implementation::Stride{}(2, std::vector(), 1, std::vector(), 12)), std::size_t(20)); } void InterleaveTest::write() { const Containers::Array data = MeshTools::interleave( std::vector{0, 1, 2}, std::vector{3, 4, 5}, std::vector{6, 7, 8}); if(!Utility::Endianness::isBigEndian()) { CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00, 0x08, 0x00 })); } else { CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x08 })); } } void InterleaveTest::writeGaps() { const Containers::Array data = MeshTools::interleave( std::vector{0, 1, 2}, 3, std::vector{3, 4, 5}, std::vector{6, 7, 8}, 2); if(!Utility::Endianness::isBigEndian()) { /* byte, _____________gap, int___________________, short_____, _______gap */ CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00 })); } else { /* byte, _____________gap, ___________________int, _____short, _______gap */ CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x08, 0x00, 0x00 })); } } void InterleaveTest::interleaveInto() { Containers::Array data{Containers::InPlaceInit, { 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77, 0x11, 0x33, 0x55, 0x77}}; MeshTools::interleaveInto(data, 2, std::vector{4, 5, 6, 7}, 1, std::vector{0, 1, 2, 3}, 3); if(!Utility::Endianness::isBigEndian()) { /* _______gap, int___________________, _gap, short_____, _____________gap */ CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x11, 0x33, 0x04, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x33, 0x55, 0x77, 0x11, 0x33, 0x05, 0x00, 0x00, 0x00, 0x55, 0x01, 0x00, 0x33, 0x55, 0x77, 0x11, 0x33, 0x06, 0x00, 0x00, 0x00, 0x55, 0x02, 0x00, 0x33, 0x55, 0x77, 0x11, 0x33, 0x07, 0x00, 0x00, 0x00, 0x55, 0x03, 0x00, 0x33, 0x55, 0x77 })); } else { /* _______gap, ___________________int, _gap, _____short, _____________gap */ CORRADE_COMPARE(std::vector(data.begin(), data.end()), (std::vector{ 0x11, 0x33, 0x00, 0x00, 0x00, 0x04, 0x55, 0x00, 0x00, 0x33, 0x55, 0x77, 0x11, 0x33, 0x00, 0x00, 0x00, 0x05, 0x55, 0x00, 0x01, 0x33, 0x55, 0x77, 0x11, 0x33, 0x00, 0x00, 0x00, 0x06, 0x55, 0x00, 0x02, 0x33, 0x55, 0x77, 0x11, 0x33, 0x00, 0x00, 0x00, 0x07, 0x55, 0x00, 0x03, 0x33, 0x55, 0x77 })); } } void InterleaveTest::isInterleaved() { /* Interleaved; testing also initial offset */ { Containers::Array vertexData{100 + 3*20}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100), 3, 20}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100 + 8), 3, 20}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } /* One after another */ { Containers::Array vertexData{100 + 3*20}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::arrayCast(vertexData.suffix(100).prefix(3*8))}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::arrayCast(vertexData.suffix(100).suffix(3*8))}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(!MeshTools::isInterleaved(data)); } } void InterleaveTest::isInterleavedEmpty() { Trade::MeshData data{MeshPrimitive::Triangles, 5}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } void InterleaveTest::isInterleavedSingleAttribute() { Containers::Array vertexData{3*8}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::arrayCast(vertexData.prefix(3*8))}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } void InterleaveTest::isInterleavedGaps() { Containers::Array vertexData{3*40}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 5), 3, 40}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 24), 3, 40}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } void InterleaveTest::isInterleavedAliased() { /* Normals share first two components with positions */ Containers::Array vertexData{3*12}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } void InterleaveTest::isInterleavedUnordered() { Containers::Array vertexData{3*12}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; /* Normals specified first even though they're ordered after positions */ Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {normals, positions}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); } void InterleaveTest::isInterleavedAttributeAcrossStride() { /* Data slightly larger */ Containers::Array vertexData{5 + 3*30 + 3}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 5), 3, 30}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, /* 23 + 12 is 35, which still fits into the stride after subtracting the initial offset; 24 not */ reinterpret_cast(vertexData.data() + 23), 3, 30}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); vertexData = data.releaseVertexData(); Trade::MeshAttributeData normals2{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 24), 3, 30}}; Trade::MeshData data2{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals2}}; CORRADE_VERIFY(!MeshTools::isInterleaved(data2)); } void InterleaveTest::interleavedLayout() { Containers::Array indexData{6}; Containers::Array vertexData{3*20}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::arrayCast(vertexData.prefix(3*8))}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::arrayCast(vertexData.suffix(3*8))}; Trade::MeshIndexData indices{Containers::arrayCast(indexData)}; Trade::MeshData data{MeshPrimitive::TriangleFan, std::move(indexData), indices, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(!MeshTools::isInterleaved(data)); Trade::MeshData layout = MeshTools::interleavedLayout(data, 10); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.primitive(), MeshPrimitive::TriangleFan); CORRADE_VERIFY(!layout.isIndexed()); /* Indices are not preserved */ CORRADE_COMPARE(layout.attributeCount(), 2); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeStride(0), 20); CORRADE_COMPARE(layout.attributeStride(1), 20); CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 8); CORRADE_COMPARE(layout.vertexCount(), 10); /* Needs to be like this so we can modify the data */ CORRADE_COMPARE(layout.vertexDataFlags(), Trade::DataFlag::Mutable|Trade::DataFlag::Owned); CORRADE_VERIFY(layout.vertexData()); CORRADE_COMPARE(layout.vertexData().size(), 10*20); } void InterleaveTest::interleavedLayoutExtra() { Containers::Array vertexData{3*20}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::arrayCast(vertexData.prefix(3*8))}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::arrayCast(vertexData.suffix(3*8))}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(!MeshTools::isInterleaved(data)); Trade::MeshData layout = MeshTools::interleavedLayout(data, 7, { Trade::MeshAttributeData{1}, Trade::MeshAttributeData{Trade::meshAttributeCustom(15), VertexFormat::UnsignedShort, nullptr}, Trade::MeshAttributeData{1}, Trade::MeshAttributeData{Trade::MeshAttribute::Color, VertexFormat::Vector3, nullptr}, Trade::MeshAttributeData{4} }); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.attributeCount(), 4); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeName(2), Trade::meshAttributeCustom(15)); CORRADE_COMPARE(layout.attributeName(3), Trade::MeshAttribute::Color); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeFormat(2), VertexFormat::UnsignedShort); CORRADE_COMPARE(layout.attributeFormat(3), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeStride(0), 40); CORRADE_COMPARE(layout.attributeStride(1), 40); CORRADE_COMPARE(layout.attributeStride(2), 40); CORRADE_COMPARE(layout.attributeStride(3), 40); CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 8); CORRADE_COMPARE(layout.attributeOffset(2), 21); CORRADE_COMPARE(layout.attributeOffset(3), 24); CORRADE_COMPARE(layout.vertexCount(), 7); CORRADE_COMPARE(layout.vertexData().size(), 7*40); } void InterleaveTest::interleavedLayoutExtraAliased() { Containers::Array vertexData{3*12}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions}}; Trade::MeshData layout = MeshTools::interleavedLayout(data, 100, { /* Normals at the same place as positions */ Trade::MeshAttributeData{-12}, Trade::MeshAttributeData{Trade::MeshAttribute::Normal, VertexFormat::Vector3, positions.data()} }); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.attributeCount(), 2); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeStride(0), 12); CORRADE_COMPARE(layout.attributeStride(1), 12); CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 0); /* aliases */ CORRADE_COMPARE(layout.vertexCount(), 100); CORRADE_COMPARE(layout.vertexData().size(), 100*12); } void InterleaveTest::interleavedLayoutExtraTooNegativePadding() { Containers::Array vertexData{3*12}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions}}; std::ostringstream out; Error redirectError{&out}; MeshTools::interleavedLayout(data, 100, { Trade::MeshAttributeData{Trade::MeshAttribute::Normal, VertexFormat::Vector3, positions.data()}, Trade::MeshAttributeData{-25} }); CORRADE_COMPARE(out.str(), "MeshTools::interleavedLayout(): negative padding -25 in extra attribute 1 too large for stride 24\n"); } void InterleaveTest::interleavedLayoutExtraOnly() { Trade::MeshData data{MeshPrimitive::Triangles, 0}; Trade::MeshData layout = MeshTools::interleavedLayout(data, 10, { Trade::MeshAttributeData{4}, Trade::MeshAttributeData{Trade::MeshAttribute::Position, VertexFormat::Vector2, nullptr}, Trade::MeshAttributeData{Trade::MeshAttribute::Normal, VertexFormat::Vector3, nullptr} }); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.attributeCount(), 2); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeStride(0), 24); CORRADE_COMPARE(layout.attributeStride(1), 24); CORRADE_COMPARE(layout.attributeOffset(0), 4); CORRADE_COMPARE(layout.attributeOffset(1), 12); CORRADE_COMPARE(layout.vertexCount(), 10); CORRADE_COMPARE(layout.vertexData().size(), 10*24); } void InterleaveTest::interleavedLayoutAlreadyInterleaved() { Containers::Array indexData{6}; /* Test also removing the initial offset */ Containers::Array vertexData{100 + 3*24}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100), 3, 24}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100 + 10), 3, 24}}; Trade::MeshIndexData indices{Containers::arrayCast(indexData)}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(indexData), indices, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); Trade::MeshData layout = MeshTools::interleavedLayout(data, 10); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_VERIFY(!layout.isIndexed()); /* Indices are not preserved */ CORRADE_COMPARE(layout.attributeCount(), 2); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); /* Original stride should be preserved */ CORRADE_COMPARE(layout.attributeStride(0), 24); CORRADE_COMPARE(layout.attributeStride(1), 24); /* Relative offsets should be preserved, but the initial one removed */ CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 10); CORRADE_COMPARE(layout.vertexCount(), 10); CORRADE_COMPARE(layout.vertexData().size(), 10*24); } void InterleaveTest::interleavedLayoutAlreadyInterleavedAliased() { Containers::Array indexData{6}; Containers::Array vertexData{3*12}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data()), 3, 12}}; Trade::MeshIndexData indices{Containers::arrayCast(indexData)}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(indexData), indices, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); Trade::MeshData layout = MeshTools::interleavedLayout(data, 10); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_VERIFY(!layout.isIndexed()); /* Indices are not preserved */ CORRADE_COMPARE(layout.attributeCount(), 2); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeStride(0), 12); CORRADE_COMPARE(layout.attributeStride(1), 12); CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 0); /* aliases */ CORRADE_COMPARE(layout.vertexCount(), 10); CORRADE_COMPARE(layout.vertexData().size(), 10*12); } void InterleaveTest::interleavedLayoutAlreadyInterleavedExtra() { Containers::Array vertexData{100 + 3*24}; Trade::MeshAttributeData positions{Trade::MeshAttribute::Position, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100), 3, 24}}; Trade::MeshAttributeData normals{Trade::MeshAttribute::Normal, Containers::StridedArrayView1D{vertexData, reinterpret_cast(vertexData.data() + 100 + 10), 3, 24}}; Trade::MeshData data{MeshPrimitive::Triangles, std::move(vertexData), {positions, normals}}; CORRADE_VERIFY(MeshTools::isInterleaved(data)); Trade::MeshData layout = MeshTools::interleavedLayout(data, 10, { Trade::MeshAttributeData{1}, Trade::MeshAttributeData{Trade::meshAttributeCustom(15), VertexFormat::UnsignedShort, nullptr}, Trade::MeshAttributeData{1}, Trade::MeshAttributeData{Trade::MeshAttribute::Color, VertexFormat::Vector3, nullptr}, Trade::MeshAttributeData{4} }); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.attributeCount(), 4); CORRADE_COMPARE(layout.attributeName(0), Trade::MeshAttribute::Position); CORRADE_COMPARE(layout.attributeName(1), Trade::MeshAttribute::Normal); CORRADE_COMPARE(layout.attributeName(2), Trade::meshAttributeCustom(15)); CORRADE_COMPARE(layout.attributeName(3), Trade::MeshAttribute::Color); CORRADE_COMPARE(layout.attributeFormat(0), VertexFormat::Vector2); CORRADE_COMPARE(layout.attributeFormat(1), VertexFormat::Vector3); CORRADE_COMPARE(layout.attributeFormat(2), VertexFormat::UnsignedShort); CORRADE_COMPARE(layout.attributeFormat(3), VertexFormat::Vector3); /* Original stride should be preserved, with stride from extra attribs added */ CORRADE_COMPARE(layout.attributeStride(0), 24 + 20); CORRADE_COMPARE(layout.attributeStride(1), 24 + 20); CORRADE_COMPARE(layout.attributeStride(2), 24 + 20); CORRADE_COMPARE(layout.attributeStride(3), 24 + 20); /* Relative offsets should be preserved, but the initial one removed */ CORRADE_COMPARE(layout.attributeOffset(0), 0); CORRADE_COMPARE(layout.attributeOffset(1), 10); CORRADE_COMPARE(layout.attributeOffset(2), 25); CORRADE_COMPARE(layout.attributeOffset(3), 28); CORRADE_COMPARE(layout.vertexCount(), 10); CORRADE_COMPARE(layout.vertexData().size(), 10*44); } void InterleaveTest::interleavedLayoutNothing() { Trade::MeshData layout = MeshTools::interleavedLayout(Trade::MeshData{MeshPrimitive::Points, 25}, 10); CORRADE_VERIFY(MeshTools::isInterleaved(layout)); CORRADE_COMPARE(layout.attributeCount(), 0); CORRADE_COMPARE(layout.vertexCount(), 10); CORRADE_VERIFY(!layout.vertexData()); CORRADE_COMPARE(layout.vertexData().size(), 0); } }}}} CORRADE_TEST_MAIN(Magnum::MeshTools::Test::InterleaveTest)