Lines Matching refs:mHistory
23 private BlurRecord[] mHistory; field in MotionBlurComponent
39 mHistory = new BlurRecord[STEP_COUNT]; in MotionBlurComponent()
41 mHistory[x] = new BlurRecord(); in MotionBlurComponent()
50 mHistory[x].texture = null; in reset()
51 mHistory[x].position.zero(); in reset()
72 mHistory[mCurrentStep].texture = currentTexture; in update()
73 mHistory[mCurrentStep].position.set(((GameObject)parent).getPosition()); in update()
74 mHistory[mCurrentStep].width = drawable.getWidth(); in update()
75 mHistory[mCurrentStep].height = drawable.getHeight(); in update()
77 mHistory[mCurrentStep].crop[0] = drawableCrop[0]; in update()
78 mHistory[mCurrentStep].crop[1] = drawableCrop[1]; in update()
79 mHistory[mCurrentStep].crop[2] = drawableCrop[2]; in update()
80 mHistory[mCurrentStep].crop[3] = drawableCrop[3]; in update()
94 final BlurRecord record = mHistory[step]; in update()