Searched defs:dstTop (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp209 float srcRight, float srcBottom, float dstLeft, float dstTop,
213 && (srcBottom - srcTop == dstBottom - dstTop)
217 translate(dstLeft, dstTop);
226 dstLeft, dstTop, dstRight, dstBottom, paint));
208 drawBitmap(const SkBitmap* bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) argument
H A DDisplayListOp.h756 float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint)
757 : DrawBoundedOp(dstLeft, dstTop, dstRight, dstBottom, paint),
754 DrawBitmapRectOp(const SkBitmap* bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) argument
H A DOpenGLRenderer.cpp2152 float dstLeft, float dstTop, float dstRight, float dstBottom,
2154 if (quickRejectSetupScissor(dstLeft, dstTop, dstRight, dstBottom)) {
2179 float scaleY = (dstBottom - dstTop) / (srcBottom - srcTop);
2190 float y = (int) floorf(dstTop + currentTransform()->getTranslateY() + 0.5f);
2193 dstBottom = y + (dstBottom - dstTop);
2196 dstTop = y;
2206 translate(dstLeft, dstTop);
2210 dstTop = 0.0f;
2217 drawAlpha8TextureMesh(dstLeft, dstTop, dstRight, dstBottom,
2222 drawTextureMesh(dstLeft, dstTop, dstRigh
2150 drawBitmap(const SkBitmap* bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DSkiaCanvas.cpp114 float srcRight, float srcBottom, float dstLeft, float dstTop,
569 float srcRight, float srcBottom, float dstLeft, float dstTop,
572 SkRect dstRect = SkRect::MakeLTRB(dstLeft, dstTop, dstRight, dstBottom);
568 drawBitmap(const SkBitmap& bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, const SkPaint* paint) argument
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp356 float dstLeft, float dstTop, float dstRight, float dstBottom,
369 dstLeft, dstTop, dstRight, dstBottom, &filteredPaint);
372 dstLeft, dstTop, dstRight, dstBottom, paint);
354 drawBitmapRect(JNIEnv* env, jobject, jlong canvasHandle, jlong bitmapHandle, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, jlong paintHandle, jint screenDensity, jint bitmapDensity) argument
H A Dandroid_view_GLES20Canvas.cpp366 float dstLeft, float dstTop, float dstRight, float dstBottom, jlong paintPtr) {
372 dstLeft, dstTop, dstRight, dstBottom, paint);
363 android_view_GLES20Canvas_drawBitmapRect(JNIEnv* env, jobject clazz, jlong rendererPtr, jlong bitmapPtr, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, jlong paintPtr) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java744 float dstLeft, float dstTop, float dstRight, float dstBottom,
754 (int)dstLeft, (int)dstTop, (int)dstRight, (int)dstBottom);
742 native_drawBitmap(Canvas thisCanvas, long nativeCanvas, long bitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) argument
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java2058 float dstLeft, float dstTop, float dstRight, float dstBottom,
2056 native_drawBitmap(long nativeCanvas, long nativeBitmap, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) argument

Completed in 514 milliseconds