Home | History | Annotate | Download | only in ui

Lines Matching defs:mSource

56     private RectF mSource = new RectF();
116 mSource.set((w - h) / 2, 0, (w + h) / 2, h);
117 canvas.drawTexture(entry.texture, mSource, mTarget);
124 mSource.set(0, 0, (w - h) / 2, h);
125 canvas.drawTexture(entry.texture, mSource, mTarget);
129 mSource.set((w + h) / 2, 0, w, h);
130 canvas.drawTexture(entry.texture, mSource, mTarget);
136 mSource.set(0, (h - w) / 2, w, (h + w) / 2);
137 canvas.drawTexture(entry.texture, mSource, mTarget);
144 mSource.set(0, 0, w, (h - w) / 2);
145 canvas.drawTexture(entry.texture, mSource, mTarget);
149 mSource.set(0, (w + h) / 2, w, h);
150 canvas.drawTexture(entry.texture, mSource, mTarget);