Searched defs:transform (Results 51 - 64 of 64) sorted by relevance

123

/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp344 int transform) {
362 return (*streamI)->setTransform(transform);
1241 status_t Camera2Device::StreamAdapter::setTransform(int transform) { argument
1245 ALOGE("%s: Cannot set transform on unconnected stream", __FUNCTION__);
1249 transform);
1251 ALOGE("%s: Unable to configure stream transform to %x: %s (%d)",
1252 __FUNCTION__, transform, strerror(-res), res);
343 setStreamTransform(int id, int transform) argument
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp927 int transform) {
956 return mOutputStreams.editValueAt(idx)->setTransform(transform);
926 setStreamTransform(int id, int transform) argument
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp63 * Extracts the x and y scale from the transform as positive values, and clamps them
65 void PathTessellator::extractTessellationScales(const Matrix4& transform, argument
67 if (CC_LIKELY(transform.isPureTranslate())) {
71 float m00 = transform.data[Matrix4::kScaleX];
72 float m01 = transform.data[Matrix4::kSkewY];
73 float m10 = transform.data[Matrix4::kSkewX];
74 float m11 = transform.data[Matrix4::kScaleY];
99 PaintInfo(const SkPaint* paint, const mat4& transform) : argument
103 if (CC_LIKELY(transform.isPureTranslate())) {
108 PathTessellator::extractTessellationScales(transform,
725 tessellatePath(const SkPath &path, const SkPaint* paint, const mat4& transform, VertexBuffer& vertexBuffer) argument
808 tessellatePoints(const float* points, int count, const SkPaint* paint, const mat4& transform, VertexBuffer& vertexBuffer) argument
850 tessellateLines(const float* points, int count, const SkPaint* paint, const mat4& transform, VertexBuffer& vertexBuffer) argument
[all...]
H A DDisplayListOp.h907 // Copy & transform all the vertices for the current operation
1382 SkMatrix transform; local
1383 renderer.findBestFontTransform(state.mMatrix, &transform);
1384 if (mPrecacheTransform != transform) {
1385 fontRenderer.precache(paint, mText, mCount, transform);
1386 mPrecacheTransform = transform;
1517 * Records transform vs parent, used for computing total transform without rerunning DL contents
H A DOpenGLRenderer.cpp372 currentTransform()->copyTo(&info.transform[0]);
667 // operations will be able to store and restore the current clip and transform info, and
900 dirtyLayer(rect.left, rect.top, rect.right, rect.bottom, *restored.transform);
1234 const float right, const float bottom, const mat4 transform) {
1237 transform.mapRect(bounds);
1832 void OpenGLRenderer::setupDrawTextureTransformUniforms(mat4& transform) { argument
1834 GL_FALSE, &transform.data[0]);
2182 // Apply a scale transform on the canvas only when a shader is in use
2676 // NOTE: Skia does not support perspective transform on drawPosText yet
2729 bool OpenGLRenderer::findBestFontTransform(const mat4& transform, SkMatri argument
1233 dirtyLayer(const float left, const float top, const float right, const float bottom, const mat4 transform) argument
2766 const mat4& transform = *currentTransform(); local
2893 mat4* transform = NULL; local
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java1632 }).transform();
2388 public void transform() { method in class:PrintActivity.DocumentTransformer
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp763 TouchAffineTransformation transform; local
764 transform.x_scale = matrix[0];
765 transform.x_ymix = matrix[1];
766 transform.x_offset = matrix[2];
767 transform.y_xmix = matrix[3];
768 transform.y_scale = matrix[4];
769 transform.y_offset = matrix[5];
771 return transform;
787 TouchAffineTransformation transform = getTouchAffineTransformation(env, matrixArr); local
792 return transform;
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp171 uint32_t transform; member in class:Rectangle
679 // For each of the transform types
683 rect.transform = id;
1310 format(graphicFormat), transform(defaultTransform),
1422 layer->transform = it->transform;
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp109 mCurrentState.transform.set(0, 0);
324 // a viewport clipping and a window transform. we should use floating point to fix this.
331 activeCrop = s.transform.transform(activeCrop);
333 activeCrop = s.transform.inverse().transform(activeCrop);
335 // This needs to be here as transform.transform(Rect) computes the
338 // transform.inverse().transform(transfor
649 uint32_t transform = hw->getOrientationTransform(); local
[all...]
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp1790 uint32_t transform; local
1792 case 0: transform = 0; break;
1793 case 90: transform = HAL_TRANSFORM_ROT_90; break;
1794 case 180: transform = HAL_TRANSFORM_ROT_180; break;
1795 case 270: transform = HAL_TRANSFORM_ROT_270; break;
1796 default: transform = 0; break;
1801 if (transform) {
1803 mNativeWindow.get(), transform);
H A DACodec.cpp644 uint32_t transform = 0; local
646 case 0: transform = 0; break;
647 case 90: transform = HAL_TRANSFORM_ROT_90; break;
648 case 180: transform = HAL_TRANSFORM_ROT_180; break;
649 case 270: transform = HAL_TRANSFORM_ROT_270; break;
650 default: transform = 0; break;
653 if (transform > 0) {
655 mNativeWindow.get(), transform);
/frameworks/base/core/java/android/view/
H A DMotionEvent.java2744 public final void transform(Matrix matrix) { method in class:MotionEvent
/frameworks/native/opengl/libagl/
H A Dcontext.h449 transform_t transform; member in struct:android::gl::matrix_stack_t
477 transform_t transform; member in struct:android::gl::vp_transform_t
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp131 TouchAffineTransformation transform; member in class:android::FakeInputReaderPolicy
179 return transform;
183 transform = t;

Completed in 1453 milliseconds

123