/frameworks/native/services/surfaceflinger/ |
D | Transform.cpp | 32 Transform::Transform() { in Transform() function in android::Transform 36 Transform::Transform(const Transform& other) in Transform() function in android::Transform 40 Transform::Transform(uint32_t orientation) { in Transform() function in android::Transform 44 Transform::~Transform() { in ~Transform() 49 bool Transform::isZero(float f) { in isZero() 53 bool Transform::absIsOne(float f) { in absIsOne() 57 Transform Transform::operator * (const Transform& rhs) const in operator *() 62 Transform r(*this); in operator *() 86 const vec3& Transform::operator [] (size_t i) const { in operator []() 90 float Transform::tx() const { in tx() [all …]
|
D | Transform.h | 36 class Transform 39 Transform(); 40 Transform(const Transform& other); 41 explicit Transform(uint32_t orientation); 42 ~Transform(); 82 Transform operator * (const Transform& rhs) const; 87 Transform inverse() const;
|
D | DisplayDevice.cpp | 366 false, Transform::ROT_0); 388 const Transform& planeTransform(mGlobalTransform); 430 transform = Transform::ROT_0; 433 transform = Transform::ROT_90; 436 transform = Transform::ROT_180; 439 transform = Transform::ROT_270; 446 int orientation, int w, int h, Transform* tr) 451 flags = Transform::ROT_0; 454 flags = Transform::ROT_90; 457 flags = Transform::ROT_180; [all …]
|
D | DisplayDevice.h | 133 const Transform& getTransform() const { return mGlobalTransform; } in getTransform() 238 int w, int h, Transform* tr); 249 Transform mGlobalTransform;
|
D | Layer.cpp | 454 invTransform = (Transform(invTransformOrient) * Transform(invTransform)) in computeCrop() 588 const Transform& tr(displayDevice->getTransform()); 618 const Transform& tr(hw->getTransform()); 632 const Transform bufferOrientation(mCurrentTransform); 633 Transform transform(tr * s.active.transform * bufferOrientation); 648 transform = Transform(invTransform) * transform; 654 if (orientation & Transform::ROT_INVALID) { 658 auto transform = static_cast<HWC2::Transform>(orientation); 665 if (orientation & Transform::ROT_INVALID) { 689 const Transform& tr = displayDevice->getTransform(); [all …]
|
D | Android.mk | 21 Transform.cpp \
|
D | SurfaceFlinger_hwc1.cpp | 1115 const Transform& tr(hw->getTransform()); in rebuildLayerStacks() 1745 const Transform tr(s.active.transform); in computeVisibleRegions() 1759 ((layerOrientation & Transform::ROT_INVALID) == false)) { in computeVisibleRegions() 2020 const Transform& tr = hw->getTransform(); in doComposeSurfaces() 3244 Transform::orientation_flags rotationFlags; in captureScreen() 3247 rotationFlags = Transform::ROT_0; in captureScreen() 3250 rotationFlags = Transform::ROT_90; in captureScreen() 3253 rotationFlags = Transform::ROT_180; in captureScreen() 3256 rotationFlags = Transform::ROT_270; in captureScreen() 3259 rotationFlags = Transform::ROT_0; in captureScreen() [all …]
|
D | SurfaceFlinger.cpp | 1125 const Transform& tr(displayDevice->getTransform()); in rebuildLayerStacks() 1726 const Transform tr(s.active.transform); in computeVisibleRegions() 1740 ((layerOrientation & Transform::ROT_INVALID) == false)) { in computeVisibleRegions() 2003 const Transform& displayTransform = displayDevice->getTransform(); in doComposeSurfaces() 3230 Transform::orientation_flags rotationFlags; in captureScreen() 3233 rotationFlags = Transform::ROT_0; in captureScreen() 3236 rotationFlags = Transform::ROT_90; in captureScreen() 3239 rotationFlags = Transform::ROT_180; in captureScreen() 3242 rotationFlags = Transform::ROT_270; in captureScreen() 3245 rotationFlags = Transform::ROT_0; in captureScreen() [all …]
|
D | SurfaceFlinger.h | 332 bool yswap, bool useIdentityTransform, Transform::orientation_flags rotation); 339 bool useIdentityTransform, Transform::orientation_flags rotation,
|
D | Layer.h | 96 Transform transform;
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
D | GLES20RenderEngine.cpp | 80 Transform::orientation_flags rotation) { in setViewportAndProjection() 99 case Transform::ROT_0: in setViewportAndProjection() 101 case Transform::ROT_90: in setViewportAndProjection() 104 case Transform::ROT_180: in setViewportAndProjection() 107 case Transform::ROT_270: in setViewportAndProjection()
|
D | GLES11RenderEngine.cpp | 73 Transform::orientation_flags rotation) { in setViewportAndProjection() 92 case Transform::ROT_0: in setViewportAndProjection() 94 case Transform::ROT_90: in setViewportAndProjection() 97 case Transform::ROT_180: in setViewportAndProjection() 100 case Transform::ROT_270: in setViewportAndProjection()
|
D | GLES11RenderEngine.h | 55 Transform::orientation_flags rotation);
|
D | GLES20RenderEngine.h | 70 Transform::orientation_flags rotation);
|
D | RenderEngine.h | 95 Rect sourceCrop, size_t hwh, bool yswap, Transform::orientation_flags rotation) = 0;
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/ |
D | Transform.java | 26 public class Transform { class 36 public void clone(Transform src) { in clone() 163 Transform t = new Transform(); in main()
|
D | BasicPipeline.java | 46 Matrix m = state.mTransform.getMatrix(Transform.VOLUME_SPACE, Transform.SCREEN_SPACE); in setupTriangles()
|
D | VrPipline1.java | 69 Matrix m = state.mTransform.getMatrix(Transform.SCREEN_SPACE, Transform.VOLUME_SPACE); in setupTriangles()
|
D | VrState.java | 39 public Transform mTransform = new Transform();
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_conceal.c | 58 static void Transform(i32 *data); 441 Transform(firstPhase); in ConcealMb() 551 Transform(firstPhase); in ConcealMb() 587 void Transform(i32 *data) in Transform() function
|
/frameworks/base/libs/hwui/ |
D | Glop.h | 144 struct Transform { struct
|
/frameworks/base/libs/hwui/tests/unit/ |
D | GlopBuilderTests.cpp | 81 static void expectTransformEq(Glop::Transform& expectedTransform, Glop::Transform& builtTransform) { in expectTransformEq()
|
/frameworks/data-binding/extensions/library/ |
D | build.gradle | 20 import com.android.build.api.transform.Transform; 121 class ExcludeShimTransform extends Transform {
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HWC2On1Adapter.h | 517 HWC2::Error setTransform(HWC2::Transform transform); 562 LatchedState<HWC2::Transform> mTransform; 618 auto transform = static_cast<HWC2::Transform>(intTransform); in setLayerTransformHook()
|
D | HWC2.h | 383 [[clang::warn_unused_result]] Error setTransform(Transform transform);
|