VOXELFORMAT: skip the color tests here

qb stores the values as rgba, and thus we use a different palette to perform a conversion
this ends in a result that is not directly comparable. We would have to quantize a palette
from the rgba values of a qubicle file and would have to use that one
master
Martin Gerhardy 2022-05-21 17:57:22 +02:00
parent 3a100a8afb
commit 15879844d7
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ TEST_F(ConvertTest, testQbToVXM) {
TEST_F(ConvertTest, testVXMToQb) {
VXMFormat src;
QBFormat target;
testLoadSaveAndLoad("test.vxm", src, "test.qb", target, true, true, 0.0018);
testLoadSaveAndLoad("test.vxm", src, "test.qb", target, false, true);
}
TEST_F(ConvertTest, testQbToCub) {