Home | History | Annotate | Download | only in jni

Lines Matching refs:plane_

131   Plane plane_;
175 : plane_(plane), transform_(transform) {
188 if (plane_.width == 0 || plane_.height == 0) {
198 output_width = min(output_width, plane_.width);
213 startX = min(startX, plane_.width - 1);
214 startY = min(startY, plane_.height - 1);
215 endX = min(endX, plane_.width - 1);
216 endY = min(endY, plane_.height - 1);
223 // stride relating the values to be gathered from plane_ into buf
228 // The index into plane_.data of (startX, startY)
229 int plane_start = startX * plane_.pixel_stride + startY * plane_.row_stride;
230 // The index into plane_.data of (endX, endY)
231 int plane_end = endX * plane_.pixel_stride + endY * plane_.row_stride;
234 int stride = dx * plane_.pixel_stride + dy * plane_.row_stride;
246 buf_ptrs[i][outX] = plane_.data[idx];