Lines Matching full:width
66 public final void setSize(int width, int height) {
67 mWidth = width;
88 int width = (int) mWidth;
101 int newTextureWidth = Shared.nextPowerOf2(width);
124 // Set the new texture width and height.
129 mNormalizedWidth = (float) width / textureWidth;
152 renderCanvas(canvas, bitmap, width, height);
153 int[] cropRect = { 0, height, width, -height };
170 float width = mWidth;
175 float originX = x + anchorX * width;
177 width *= scale;
179 x = originX - anchorX * width;
187 view.draw2D(x, y, 0, width, height);
196 protected abstract void renderCanvas(Canvas canvas, Bitmap backing, int width, int height);