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

/frameworks/native/include/private/gui/
H A DLayerState.h58 matrix.dsdx = matrix.dtdy = 1.0f;
67 float dsdx; member in struct:android::layer_state_t::matrix22_t
/frameworks/native/libs/gui/
H A DSurfaceControl.cpp147 status_t SurfaceControl::setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
151 return client->setMatrix(mHandle, dsdx, dtdx, dsdy, dtdy);
H A DSurfaceComposerClient.cpp154 float dsdx, float dtdx, float dsdy, float dtdy);
349 const sp<IBinder>& id, float dsdx, float dtdx,
357 matrix.dsdx = dsdx;
570 status_t SurfaceComposerClient::setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, argument
572 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);
348 setMatrix(const sp<SurfaceComposerClient>& client, const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy) argument
/frameworks/base/services/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/core/jni/
H A Dandroid_view_SurfaceControl.cpp299 jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) {
301 status_t err = ctrl->setMatrix(dsdx, dtdx, dsdy, dtdy);
298 nativeSetMatrix(JNIEnv* env, jclass clazz, jint nativeObject, jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) argument
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java427 float dsdx, float dtdx, float dsdy, float dtdy) {
433 alpha, offx, offy, dsdx, dtdx, dsdy, dtdy);
426 setUniverseTransform(IBinder window, float alpha, float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) argument
H A DWindowState.java696 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
697 if (dsdx < .99999f || dsdx > 1.00001f) return false;
H A DWindowManagerService.java2641 float offx, float offy, float dsdx, float dtdx, float dsdy, float dtdy) {
2648 mTmpFloats[Matrix.MSCALE_X] = dsdx;
2640 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.java189 float dsdx, float dtdx, float dsdy, float dtdy) {
188 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.java55 private static native void nativeSetMatrix(int nativeObject, float dsdx, float dtdx, float dsdy, float dtdy); argument
359 public void setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { argument
361 nativeSetMatrix(mNativeObject, dsdx, dtdx, dsdy, dtdy);
/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 314 milliseconds