Home | History | Annotate | Download | only in graphics

Lines Matching defs:strides

73      * @param strides (Optional) Row bytes of each image plane. If yuv contains padding, the stride
74 * of each image must be provided. If strides is null, the method assumes no
79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) {
96 if (strides == null) {
99 mStrides = strides;
200 int[] strides = null;
202 strides = new int[] {width, width};
203 return strides;
207 strides = new int[] {width * 2};
208 return strides;
211 return strides;
238 int format, int width, int height, int[] offsets, int[] strides,