Searched defs:dsdx (Results 1 - 12 of 12) sorted by relevance

/frameworks/native/include/private/gui/
H A DLayerState.h63 matrix.dsdx = matrix.dtdy = 1.0f;
72 float dsdx; 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,
368 matrix.dsdx = dsdx;
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) { }
37 float dsdx; member in struct:android::SpriteTransformationMatrix
43 return dsdx == other.dsdx
/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 + ","
670 mDsdx = dsdx;
675 super.setMatrix(dsdx, dtdx, dsdy, dtdy);
H A DWindowState.java834 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
835 if (dsdx < .99999f || dsdx > 1.00001f) return false;
H A DWindowManagerService.java2946 float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) {
2953 mTmpFloats[Matrix.MSCALE_X] = dsdx;
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
/frameworks/native/opengl/libagl/
H A Dtexture.cpp725 int32_t dsdx = Wcr / w; // dsdx = ((Wcr/w)/Wt)*Wt local
727 int32_t s0 = Ucr - gglMulx(dsdx, x); // s0 = Ucr - x * dsdx
730 texcoords[1] = dsdx;

Completed in 1729 milliseconds