Searched refs:matrix (Results 126 - 137 of 137) sorted by relevance

123456

/frameworks/native/include/input/
H A DInput.h585 // Apply 3x3 perspective matrix transformation.
587 void transform(const float matrix[9]);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2.h310 const android::mat4& matrix, android_color_transform_t hint);
H A DHWC2.cpp798 Error Display::setColorTransform(const android::mat4& matrix, argument
802 matrix.asArray(), static_cast<int32_t>(hint));
/frameworks/native/services/surfaceflinger/
H A DLayer.h156 bool setMatrix(const layer_state_t::matrix22_t& matrix);
H A DLayer.cpp922 // Query the texture matrix given our current filtering mode.
934 // create a 4x4 transform matrix from the display transform flags
952 // and finally apply it to the original texture matrix
1467 // we may use linear filtering, if the matrix scales us
1507 // we want to apply the position portion of the transform matrix immediately,
1551 bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix) { argument
1554 matrix.dsdx, matrix.dsdy, matrix.dtdx, matrix
[all...]
H A DSurfaceFlinger.cpp2282 if (layer->setMatrix(s.matrix))
3044 // apply a color matrix
3048 // color matrix is sent as mat3 matrix followed by vec3
H A DSurfaceFlinger_hwc1.cpp2298 if (layer->setMatrix(s.matrix))
3058 // apply a color matrix
3062 // color matrix is sent as mat3 matrix followed by vec3
/frameworks/opt/net/wifi/service/lib/
H A Dwifi_hal_stub.cpp41 feature_set *matrix, int *size) {
40 wifi_get_concurrency_matrix_stub(wifi_interface_handle handle, int max_size, feature_set *matrix, int *size) argument
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A DMainActivity.java217 Matrix matrix = mImgView.getImageMatrix();
/frameworks/native/include/ui/
H A Dmat4.h107 // construct from another matrix of the same size
156 * Since the matrix code could become pretty big quickly, we don't inline most
340 // matrix * vector, result is a vector of the same type than the input vector
349 // vector * matrix, result is a vector of the same type than the input vector
358 // matrix * scalar, result is a matrix of the same type than the input matrix
367 // scalar * matrix, result is a matrix of the same type than the input matrix
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java314 // get its current matrix
320 // combine them so that the given matrix is applied after.
323 // give it to the graphics2D as a new matrix replacing all previous transform
343 // get its current matrix
345 // get the AffineTransform of the given matrix
348 // combine them so that the given matrix is applied after.
351 // give it to the graphics2D as a new matrix replacing all previous transform
371 // get the AffineTransform of the given matrix
374 // give it to the graphics2D as a new matrix replacing all previous transform
470 public static void native_getCTM(long canvas, long matrix) { argument
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java984 final Matrix matrix = new Matrix();
988 matrix.reset();
991 matrix.setRectToRect(src, dst, Matrix.ScaleToFit.FILL);
993 shader.setLocalMatrix(matrix);

Completed in 427 milliseconds

123456