mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 21:32:12 +02:00
Fix vec4 serialization
This commit is contained in:
parent
23a5795ba9
commit
30ced59cec
2 changed files with 17 additions and 7 deletions
|
@ -235,7 +235,7 @@ class SerDes {
|
|||
memcpy(&_store[_pos + sz*2], (char*)&val.z, sz);
|
||||
memcpy(&_store[_pos + sz*3], (char*)&val.w, sz);
|
||||
|
||||
_pos += sz*3;
|
||||
_pos += sz*4;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
@ -248,7 +248,7 @@ class SerDes {
|
|||
memcpy((char*)&val.z, &_store[_pos + sz*2], sz);
|
||||
memcpy((char*)&val.w, &_store[_pos + sz*3], sz);
|
||||
|
||||
_pos += sz*3;
|
||||
_pos += sz*4;
|
||||
} else {
|
||||
_overflow = true;
|
||||
qCritical() << "Deserializer trying to read past end of input, reading glm::vec3 from position " << _pos << ", length " << _length;
|
||||
|
|
|
@ -60,13 +60,19 @@ void SerializerTests::testAdd() {
|
|||
|
||||
void SerializerTests::testAddAndRead() {
|
||||
SerDes s;
|
||||
glm::vec3 v{1.f, 3.1415f, 2.71828f};
|
||||
glm::vec3 v2;
|
||||
glm::vec3 v3_a{1.f, 3.1415f, 2.71828f};
|
||||
glm::vec3 v3_b;
|
||||
glm::vec4 v4_a{3.1415f, 2.71828f, 1.4142f, 1.6180f};
|
||||
glm::vec4 v4_b;
|
||||
glm::ivec2 iv2_a{10, 24};
|
||||
glm::ivec2 iv2_b;
|
||||
|
||||
s << (qint8)1;
|
||||
s << (qint16)0xaabb;
|
||||
s << (qint32)0xccddeeff;
|
||||
s << v;
|
||||
s << v3_a;
|
||||
s << v4_a;
|
||||
s << iv2_a;
|
||||
|
||||
qint8 i8;
|
||||
qint16 i16;
|
||||
|
@ -77,14 +83,18 @@ void SerializerTests::testAddAndRead() {
|
|||
s >> i8;
|
||||
s >> i16;
|
||||
s >> i32;
|
||||
s >> v2;
|
||||
s >> v3_b;
|
||||
s >> v4_b;
|
||||
s >> iv2_b;
|
||||
|
||||
qDebug() << s;
|
||||
|
||||
QCOMPARE(i8, (qint8)1);
|
||||
QCOMPARE(i16, (qint16)0xaabb);
|
||||
QCOMPARE(i32, (qint32)0xccddeeff);
|
||||
QCOMPARE(v, v2);
|
||||
QCOMPARE(v3_a, v3_b);
|
||||
QCOMPARE(v4_a, v4_b);
|
||||
QCOMPARE(iv2_a, iv2_b);
|
||||
}
|
||||
|
||||
void SerializerTests::testReadPastEnd() {
|
||||
|
|
Loading…
Reference in a new issue