Home | History | Annotate | Download | only in jni

Lines Matching full:matrix

154     jobject matrix = NULL;
156 LOGD("Create a rotation matrix: %d degrees", videoFrame->mRotationAngle);
157 jclass matrixClazz = env->FindClass("android/graphics/Matrix");
160 "Can't find android/graphics/Matrix");
167 "Can't find Matrix constructor");
170 matrix =
172 if (matrix == NULL) {
173 LOGE("Could not create a Matrix object");
177 LOGV("Rotate the matrix: %d degrees", videoFrame->mRotationAngle);
182 "Can't find Matrix setRotate method");
185 env->CallVoidMethod(matrix, setRotateMethod, 1.0 * videoFrame->mRotationAngle);
209 LOGV("Return a new bitmap constructed with the rotation matrix");
217 matrix, // transform matrix
325 "(Landroid/graphics/Bitmap;IIIILandroid/graphics/Matrix;Z)"