/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) { } 37 float dsdx; member in struct:android::SpriteTransformationMatrix 43 return dsdx == other.dsdx
|
SpriteController.cpp | 286 update.state.transformationMatrix.dsdx,
|
/frameworks/native/include/private/gui/ |
LayerState.h | 69 matrix.dsdx = matrix.dtdy = 1.0f; 77 float dsdx; member in struct:android::layer_state_t::matrix22_t
|
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_copybit.cpp | 375 float dsdx = (float)screen_w/src_crop_width; local 380 if(dsdx > scaleLimitMax || 382 dsdx < 1/scaleLimitMin || 384 ALOGE("%s: greater than max supported size dsdx=%f dtdy=%f \ 385 scaleLimitMax=%f scaleLimitMin=%f", __FUNCTION__,dsdx,dtdy, 389 if(dsdx > copybitsMaxScale || 391 dsdx < 1/copybitsMinScale || 395 ALOGE("%s:%d::Need to scale twice dsdx=%f, dtdy=%f,copybitsMaxScale=%f,\ 398 dsdx,dtdy,copybitsMaxScale,1/copybitsMinScale,screen_w,screen_h, 411 if (dsdx > copybitsMaxScale || dtdy > copybitsMaxScale ) [all...] |
/system/core/libpixelflinger/ |
raster.cpp | 196 int32_t dsdx = Wcr / w; // dsdx = ((Wcr/w)/Wt)*Wt local 198 int32_t s0 = Ucr - gglMulx(dsdx, x); // s0 = Ucr - x * dsdx 201 texcoords[1] = dsdx;
|
scanline.cpp | 693 tc[i].s = (xs * ti.dsdx) + ti.ydsdy; 732 tc[i].s += ti.dsdx; 2032 int32_t sq, tq, dsdx, dtdx; local [all...] |
/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) { 659 if (LOG_SURFACE_TRACE) Slog.v(SURFACE_TAG, "setMatrix(" + dsdx + "," + dtdx + "," 662 mDsdx = dsdx; [all...] |
/hardware/qcom/display/msm8084/libhwcomposer/ |
hwc_copybit.cpp | 469 float dsdx = (float)screen_w/(float)src_crop_width; local 474 if(dsdx > scaleLimitMax || 476 dsdx < 1/scaleLimitMin || 478 ALOGW("%s: greater than max supported size dsdx=%f dtdy=%f \ 479 scaleLimitMax=%f scaleLimitMin=%f", __FUNCTION__,dsdx,dtdy, 484 if(dsdx > copybitsMaxScale || 486 dsdx < 1/copybitsMinScale || 490 ALOGD("%s:%d::Need to scale twice dsdx=%f, dtdy=%f,copybitsMaxScale=%f,\ 493 dsdx,dtdy,copybitsMaxScale,1/copybitsMinScale,screen_w,screen_h, 500 if (dsdx > copybitsMaxScale || dtdy > copybitsMaxScale ) [all...] |
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_copybit.cpp | 845 float dsdx = (float)screen_w/(float)src_crop_width; local 850 if(dsdx > scaleLimitMax || 852 dsdx < 1/scaleLimitMin || 854 ALOGW("%s: greater than max supported size dsdx=%f dtdy=%f \ 855 scaleLimitMax=%f scaleLimitMin=%f", __FUNCTION__,dsdx,dtdy, 860 if(dsdx > copybitsMaxScale || 862 dsdx < 1/copybitsMinScale || 866 ALOGD("%s:%d::Need to scale twice dsdx=%f, dtdy=%f,copybitsMaxScale=%f,\ 869 dsdx,dtdy,copybitsMaxScale,1/copybitsMinScale,screen_w,screen_h, 876 if (dsdx > copybitsMaxScale || dtdy > copybitsMaxScale ) [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_span.c | 414 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy, 418 GLfloat dudx = texW * ((s + dsdx) / (q + dqdx) - s * invQ); 436 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy, 440 GLfloat dsdx2 = (s + dsdx) / (q + dqdx) - s * invQ; 485 const GLfloat dsdx = span->attrStepX[attr][0]; local 492 GLfloat s = span->attrStart[attr][0] + span->leftClip * dsdx; 535 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy, 538 s += dsdx; 552 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy, 555 s += dsdx; [all...] |
s_points.c | 124 GLfloat s, r, dsdx; local 128 dsdx = 1.0F / size; 159 span.attrStepX[attr][0] = dsdx; 176 span.attrStepX[FRAG_ATTRIB_PNTC][0] = dsdx;
|
s_span.h | 194 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy,
|
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 361 // s = (x * dsdx)>>16 + ydsdy 362 // s = (x * dsdx)>>16 + (y*dsdy)>>16 + s0 374 CONTEXT_LOAD(s.reg, generated_vars.texture[i].dsdx); 599 int dsdx = scratches.obtain(); local 605 CONTEXT_LOAD(dsdx, generated_vars.texture[i].dsdx); 607 ADD(AL, 0, s.reg, s.reg, dsdx); 615 scratches.recycle(dsdx); 678 int dsdx = scratches.obtain(); local 680 CONTEXT_LOAD(dsdx, generated_vars.texture[i].dsdx) [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);
|
/hardware/qcom/display/msm8909/libhwcomposer/ |
hwc_copybit.cpp | 1016 float dsdx = (float)screen_w\/(float)src_crop_width; local [all...] |
/hardware/qcom/display/msm8994/libhwcomposer/ |
hwc_copybit.cpp | 898 float dsdx = (float)screen_w\/(float)src_crop_width; local [all...] |
/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); 370 const sp<IBinder>& id, float dsdx, float dtdx, 378 matrix.dsdx = dsdx; 696 status_t SurfaceComposerClient::setMatrix(const sp<IBinder>& id, float dsdx, float dtdx, 698 return getComposer().setMatrix(this, id, dsdx, dtdx, dsdy, dtdy);
|
/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);
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
ggl_context.h | 392 GGLfixed dsdx; member in struct:android::texture_iterators_t::__anon74783::__anon74784 486 int32_t dsdx; member in struct:android::generated_tex_vars_t
|
/frameworks/native/opengl/libagl/ |
texture.cpp | 718 int32_t dsdx = Wcr / w; // dsdx = ((Wcr/w)/Wt)*Wt local 720 int32_t s0 = Ucr - gglMulx(dsdx, x); // s0 = Ucr - x * dsdx 723 texcoords[1] = dsdx; [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_tex_sample.c | 494 float dsdx = fabsf(s[QUAD_BOTTOM_RIGHT] - s[QUAD_BOTTOM_LEFT]); local 496 float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); 509 float dsdx = fabsf(s[QUAD_BOTTOM_RIGHT] - s[QUAD_BOTTOM_LEFT]); local 513 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); 528 float dsdx = fabsf(s[QUAD_BOTTOM_RIGHT] - s[QUAD_BOTTOM_LEFT]); local 534 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level); [all...] |