/frameworks/base/libs/input/ |
SpriteController.h | 33 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) : 35 dsdx(dsdx), dtdx(dtdx), dsdy(dsdy), dtdy(dtdy) { } 39 float dsdy; member in struct:android::SpriteTransformationMatrix 45 && dsdy == other.dsdy
|
SpriteController.cpp | 288 update.state.transformationMatrix.dsdy,
|
/frameworks/native/include/private/gui/ |
LayerState.h | 70 matrix.dsdy = matrix.dtdx = 0.0f; 79 float dsdy; member in struct:android::layer_state_t::matrix22_t
|
/frameworks/base/services/core/java/com/android/server/wm/ |
WindowSurfaceController.java | 267 void setMatrixInTransaction(float dsdx, float dtdx, float dsdy, float dtdy, 271 "MATRIX [" + dsdx + "," + dtdx + "," + dsdy + "," + dtdy + "]", null); 273 dsdx, dtdx, dsdy, dtdy); 279 + " MATRIX [" + dsdx + "," + dtdx + "," + dsdy + "," + dtdy + "]", null); 313 boolean prepareToShowInTransaction(float alpha, int layer, float dsdx, float dtdx, float dsdy, 322 dsdx, dtdx, dsdy, dtdy); 657 public void setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { 658 if (dsdx != mDsdx || dtdx != mDtdx || dsdy != mDsdy || dtdy != mDtdy) { 660 + dsdy + "," + dtdy + "): OLD:" + this + ". Called by " 664 mDsdy = dsdy; [all...] |
WindowState.java | [all...] |
WindowStateAnimator.java | [all...] |
/frameworks/native/include/gui/ |
SurfaceControl.h | 72 status_t setMatrix(float dsdx, float dtdx, float dsdy, float dtdy);
|
SurfaceComposerClient.h | 143 status_t setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, float dsdy, float dtdy);
|
/frameworks/native/libs/gui/ |
SurfaceControl.cpp | 150 status_t SurfaceControl::setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { 153 return mClient->setMatrix(mHandle, dsdx, dtdx, dsdy, dtdy);
|
SurfaceComposerClient.cpp | 157 float dsdx, float dtdx, float dsdy, float dtdy); 371 float dsdy, float dtdy) { 380 matrix.dsdy = dsdy; 697 float dsdy, float dtdy) { 698 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);
|
/external/mesa3d/src/mesa/swrast/ |
s_span.h | 194 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy,
|
s_span.c | 414 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy, 420 GLfloat dudy = texW * ((s + dsdy) / (q + dqdy) - s * invQ); 436 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy, 442 GLfloat dsdy2 = (s + dsdy) / (q + dqdy) - s * invQ; 486 const GLfloat dsdy = span->attrStepY[attr][0]; local 535 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy, 552 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy, [all...] |
s_texfilter.c | 1887 const GLfloat dsdy = span->attrStepY[attr][0]; local [all...] |
/frameworks/base/core/java/android/view/ |
SurfaceControl.java | 58 private static native void nativeSetMatrix(long nativeObject, float dsdx, float dtdx, float dsdy, float dtdy); 480 public void setMatrix(float dsdx, float dtdx, float dsdy, float dtdy) { 482 nativeSetMatrix(mNativeObject, dsdx, dtdx, dsdy, dtdy); [all...] |
/system/core/libpixelflinger/include/pixelflinger/ |
pixelflinger.h | 267 // s, dsdx, dsdy, scale, t, dtdx, dtdy, tscale
|
/frameworks/base/core/jni/ |
android_view_SurfaceControl.cpp | 310 jfloat dsdx, jfloat dtdx, jfloat dsdy, jfloat dtdy) { 312 status_t err = ctrl->setMatrix(dsdx, dtdx, dsdy, dtdy);
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_tex_sample.c | 495 float dsdy = fabsf(s[QUAD_TOP_LEFT] - s[QUAD_BOTTOM_LEFT]); local 496 float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); 510 float dsdy = fabsf(s[QUAD_TOP_LEFT] - s[QUAD_BOTTOM_LEFT]); local 513 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); 529 float dsdy = fabsf(s[QUAD_TOP_LEFT] - s[QUAD_BOTTOM_LEFT]); local 534 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); [all...] |
/system/core/libpixelflinger/ |
scanline.cpp | [all...] |
/system/core/libpixelflinger/include/private/pixelflinger/ |
ggl_context.h | 393 GGLfixed dsdy; member in struct:android::texture_iterators_t::__anon74783::__anon74784
|
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 362 // s = (x * dsdx)>>16 + (y*dsdy)>>16 + s0 [all...] |