Lines Matching full:width
52 public AdaptiveBackgroundTexture(Bitmap source, int width, int height) {
54 mWidth = width;
59 public AdaptiveBackgroundTexture(Texture texture, int width, int height) {
62 mWidth = width;
104 // Full width, partial height.
111 // Full height, partial or full width.
156 private static void boxBlurFilter(int[] in, int[] out, int width, int height, int startFadeX) {
158 int maxX = width - 1;
174 for (int x = 0; x != width; ++x) { // CR: x < width
189 inPos += width;