Home | History | Annotate | Download | only in media

Lines Matching refs:height

66     public final void setSize(int width, int height) {
68 mHeight = height;
89 int height = (int) mHeight;
102 int newTextureHeight = Shared.nextPowerOf2(height);
124 // Set the new texture width and height.
130 mNormalizedHeight = (float) height / textureHeight;
152 renderCanvas(canvas, bitmap, width, height);
153 int[] cropRect = { 0, height, width, -height };
171 float height = mHeight;
176 float originY = y + anchorY * height;
178 height *= scale;
180 y = originY - anchorY * height;
187 view.draw2D(x, y, 0, width, height);
196 protected abstract void renderCanvas(Canvas canvas, Bitmap backing, int width, int height);