Home
last modified time | relevance | path

Searched refs:animationInfo (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/surround_view/service-impl/
DAnimationModule.cpp82 for (const auto& animationInfo : mAnimations) { in mapVhalToParts() local
83 auto partId = animationInfo.partId; in mapVhalToParts()
84 for (const auto& gammaOp : animationInfo.gammaOpsMap) { in mapVhalToParts()
92 for (const auto& textureOp : animationInfo.textureOpsMap) { in mapVhalToParts()
100 for (const auto& rotationOp : animationInfo.rotationOpsMap) { in mapVhalToParts()
108 for (const auto& translationOp : animationInfo.translationOpsMap) { in mapVhalToParts()
116 mPartsToAnimationMap.emplace(std::make_pair(partId, animationInfo)); in mapVhalToParts()
472 const auto& animationInfo = mPartsToAnimationMap.at(partId); in getUpdatedAnimationParams() local
473 if (animationInfo.gammaOpsMap.find(vhalProperty) != in getUpdatedAnimationParams()
474 animationInfo.gammaOpsMap.end()) { in getUpdatedAnimationParams()
[all …]
DCarModelConfigReader.cpp231 bool ReadAnimation(const XMLElement* animationElem, AnimationInfo* animationInfo) { in ReadAnimation() argument
232 RETURN_IF_FALSE(ReadValue(animationElem, "PartId", &animationInfo->partId)); in ReadAnimation()
233 RETURN_IF_FALSE(ReadValue(animationElem, "ParentPartId", &animationInfo->parentId)); in ReadAnimation()
239 RETURN_IF_FALSE(ReadValueList(childPartsElem, "PartId", &animationInfo->childIds)); in ReadAnimation()
243 animationInfo->pose = gMat4Identity; in ReadAnimation()
246 RETURN_IF_FALSE(ReadAllOps(animationElem, "RotationOp", &animationInfo->rotationOpsMap)); in ReadAnimation()
247 RETURN_IF_FALSE(ReadAllOps(animationElem, "TranslationOp", &animationInfo->translationOpsMap)); in ReadAnimation()
248 RETURN_IF_FALSE(ReadAllOps(animationElem, "TextureOp", &animationInfo->textureOpsMap)); in ReadAnimation()
249 RETURN_IF_FALSE(ReadAllOps(animationElem, "GammaOp", &animationInfo->gammaOpsMap)); in ReadAnimation()
258 AnimationInfo animationInfo; in ReadAllAnimations() local
[all …]