diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-08-21 03:16:51 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-08-21 03:16:51 (GMT) |
commit | 7eb52559f44de7666c31ea28ce557eaca9177e9d (patch) | |
tree | 757b9927465409fc6a005a50bfe57322ec0824b9 /src/declarative/qml/qmlinstruction.cpp | |
parent | 0fd79d739bf102e406a8042eb20add5b1e8ebb10 (diff) | |
download | Qt-7eb52559f44de7666c31ea28ce557eaca9177e9d.zip Qt-7eb52559f44de7666c31ea28ce557eaca9177e9d.tar.gz Qt-7eb52559f44de7666c31ea28ce557eaca9177e9d.tar.bz2 |
Make QVector3D a first-class builtin type within QML
Reviewed-by: Martin Jones
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r-- | src/declarative/qml/qmlinstruction.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp index fd912ac..02e4883 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -119,6 +119,9 @@ void QmlCompiledData::dump(QmlInstruction *instr, int idx) case QmlInstruction::StoreRectF: qWarning() << idx << "\t" << line << "\t" << "STORE_RECTF\t\t" << instr->storeRect.propertyIndex << "\t" << instr->storeRect.valueIndex; break; + case QmlInstruction::StoreVector3D: + qWarning() << idx << "\t" << line << "\t" << "STORE_VECTOR3D\t\t" << instr->storeVector3D.propertyIndex << "\t" << instr->storeVector3D.valueIndex; + break; case QmlInstruction::StoreVariant: qWarning() << idx << "\t" << line << "\t" << "STORE_VARIANT\t\t" << instr->storeString.propertyIndex << "\t" << instr->storeString.value << "\t\t" << primitives.at(instr->storeString.value); break; |