nodevalue: remove unnecessary vecs

This commit is contained in:
itsmattkc
2022-05-09 15:58:19 -07:00
parent b88e15b8cf
commit 616121ee7a
2 changed files with 12 additions and 10 deletions
-4
View File
@@ -34,10 +34,6 @@
namespace olive {
const QVector<NodeValue::Type> NodeValue::kNumber = {kFloat, kInt, kRational};
const QVector<NodeValue::Type> NodeValue::kBuffer = {kTexture, kSamples};
const QVector<NodeValue::Type> NodeValue::kVector = {kVec2, kVec3, kVec4};
QString NodeValue::ValueToString(Type data_type, const QVariant &value, bool value_is_a_key_track)
{
if (!value_is_a_key_track && data_type == kVec2) {