Lines Matching refs:fPose
98 fParticles[fCount].fPose.fPosition = { 0.0f, 0.0f }; in update()
99 fParticles[fCount].fPose.fHeading = { 0.0f, -1.0f }; in update()
100 fParticles[fCount].fPose.fScale = 1.0f; in update()
142 fParticles[i].fPose.fPosition += fParticles[i].fVelocity.fLinear * deltaTime; in update()
145 SkVector oldHeading = fParticles[i].fPose.fHeading; in update()
146 fParticles[i].fPose.fHeading = { oldHeading.fX * c - oldHeading.fY * s, in update()
232 case kPositionX_Source: return ps.fPose.fPosition.fX; in getSourceValue()
233 case kPositionY_Source: return ps.fPose.fPosition.fY; in getSourceValue()
234 case kScale_Source: return ps.fPose.fScale; in getSourceValue()
249 case kHeadingX_Source: return ps.fPose.fHeading.dot(frameRight); in getSourceValue()
250 case kHeadingY_Source: return ps.fPose.fHeading.dot(frameUp); in getSourceValue()