mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-20 05:43:12 +01:00
Updated meshoptimizer.
This commit is contained in:
6
3rdparty/meshoptimizer/src/vertexcodec.cpp
vendored
6
3rdparty/meshoptimizer/src/vertexcodec.cpp
vendored
@@ -309,7 +309,7 @@ static const unsigned char* decodeBytesGroup(const unsigned char* data, unsigned
|
||||
memcpy(buffer, data, kByteGroupSize);
|
||||
return data + kByteGroupSize;
|
||||
default:
|
||||
assert(!"Unexpected bit length"); // This can never happen since bitslog2 is a 2-bit value
|
||||
assert(!"Unexpected bit length"); // unreachable since bitslog2 is a 2-bit value
|
||||
return data;
|
||||
}
|
||||
|
||||
@@ -521,7 +521,7 @@ static const unsigned char* decodeBytesGroupSimd(const unsigned char* data, unsi
|
||||
}
|
||||
|
||||
default:
|
||||
assert(!"Unexpected bit length"); // This can never happen since bitslog2 is a 2-bit value
|
||||
assert(!"Unexpected bit length"); // unreachable since bitslog2 is a 2-bit value
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@@ -649,7 +649,7 @@ static const unsigned char* decodeBytesGroupSimd(const unsigned char* data, unsi
|
||||
}
|
||||
|
||||
default:
|
||||
assert(!"Unexpected bit length"); // This can never happen since bitslog2 is a 2-bit value
|
||||
assert(!"Unexpected bit length"); // unreachable since bitslog2 is a 2-bit value
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user