Home | History | Annotate | Download | only in replicaisland

Lines Matching defs:mHistory

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