Searched defs:dtdx (Results 1 - 11 of 11) sorted by relevance

/frameworks/native/include/private/gui/
H A DLayerState.h64 matrix.dsdy = matrix.dtdx = 0.0f;
73 float dtdx; member in struct:android::layer_state_t::matrix22_t
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp137 status_t SurfaceControl::setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
140 return mClient->setMatrix(mHandle, dsdx, dtdx, dsdy, dtdy);
H A DSurfaceComposerClient.cpp155 float dsdx, float dtdx, float dsdy, float dtdy);
360 const sp<IBinder>& id, float dsdx, float dtdx,
369 matrix.dtdx = dtdx;
608 status_t SurfaceComposerClient::setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, argument
610 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);
359 setMatrix(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy) argument
/frameworks/base/libs/input/
H A DSpriteController.h33 inline SpriteTransformationMatrix() : dsdx(1.0f), dtdx(0.0f), dsdy(0.0f), dtdy(1.0f) { }
34 inline SpriteTransformationMatrix(float dsdx, float dtdx, float dsdy, float dtdy) : argument
35 dsdx(dsdx), dtdx(dtdx), dsdy(dsdy), dtdy(dtdy) { }
38 float dtdx; member in struct:android::SpriteTransformationMatrix
44 && dtdx == other.dtdx
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java450 float dsdx, float dtdx, float dsdy, float dtdy) {
456 alpha, offx, offy, dsdx, dtdx, dsdy, dtdy);
449 setUniverseTransform(IBinder window, float alpha, float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) argument
H A DWindowStateAnimator.java665 public void setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
666 if (dsdx != mDsdx || dtdx != mDtdx || dsdy != mDsdy || dtdy != mDtdy) {
667 if (logSurfaceTrace) Slog.v(SURFACE_TAG, "setMatrix(" + dsdx + "," + dtdx + ","
671 mDtdx = dtdx;
675 super.setMatrix(dsdx, dtdx, dsdy, dtdy);
H A DWindowState.java834 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
837 if (dtdx < -.000001f || dtdx > .000001f) return false;
H A DWindowManagerService.java2946 float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) {
2954 mTmpFloats[Matrix.MSKEW_Y] = dtdx;
2945 setUniverseTransformLocked(WindowState window, float alpha, float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java195 float dsdx, float dtdx, float dsdy, float dtdy) {
194 setUniverseTransform(IBinder window, float alpha, float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) argument
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java56 private static native void nativeSetMatrix(long nativeObject, float dsdx, float dtdx, float dsdy, float dtdy); argument
423 public void setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
425 nativeSetMatrix(mNativeObject, dsdx, dtdx, dsdy, dtdy);
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp294 jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) {
296 status_t err = ctrl->setMatrix(dsdx, dtdx, dsdy, dtdy);
293 nativeSetMatrix(JNIEnv* env, jclass clazz, jlong nativeObject, jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) argument

Completed in 56 milliseconds