Home | History | Annotate | Download | only in jni

Lines Matching refs:Plane

32 struct Plane;
83 * Represents a model for accessing pixel data for a single plane of an image.
87 struct Plane {
88 // The dimensions of this plane of the image
102 * an image plane as contiguous arrays, suitable for use with libjpeg.
111 * @param plane the plane to iterate over
113 * coordinate space of the plane
118 inline RowIterator(Plane plane, Transform transform, int row_length);
131 Plane plane_;
156 /** Y Plane */
158 /** Cb Plane */
160 /** Cr Plane */
173 jpegutil::RowIterator<ROWS>::RowIterator(Plane plane, Transform transform,
175 : plane_(plane), transform_(transform) {
201 // along an axis-aligned line in the plane.
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
235 // In the degenerate-case of a 1x1 plane, startX and endX are equal, so