HomeSort by relevance Sort by last modified time
    Searched refs:meshHeight (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/libs/hwui/
RecordedOp.h 224 BitmapMeshOp(BASE_PARAMS, const SkBitmap* bitmap, int meshWidth, int meshHeight,
229 , meshHeight(meshHeight)
234 const int meshHeight;
SkiaCanvas.cpp 144 virtual void drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
648 void SkiaCanvas::drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
651 const int ptCount = (meshWidth + 1) * (meshHeight + 1);
652 const int indexCount = meshWidth * meshHeight * 6;
676 const SkScalar dy = h / meshHeight;
680 for (int i = 0; i <= meshHeight; i++) {
681 if (i == meshHeight) {
701 for (int i = 0; i < meshHeight; i++) {
RecordingCanvas.h 185 virtual void drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
DisplayListCanvas.cpp 312 void DisplayListCanvas::drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
314 int vertexCount = (meshWidth + 1) * (meshHeight + 1);
319 addDrawOp(new (alloc()) DrawBitmapMeshOp(refBitmap(bitmap), meshWidth, meshHeight,
RecordingCanvas.cpp 523 void RecordingCanvas::drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
525 int vertexCount = (meshWidth + 1) * (meshHeight + 1);
530 refPaint(paint), refBitmap(bitmap), meshWidth, meshHeight,
BakedOpDispatcher.cpp 446 const uint32_t elementCount = op.meshWidth * op.meshHeight * 6;
454 uint32_t colorsCount = (op.meshWidth + 1) * (op.meshHeight + 1);
463 for (int32_t y = 0; y < op.meshHeight; y++) {
469 float v1 = float(y) / op.meshHeight;
470 float v2 = float(y + 1) / op.meshHeight;
    [all...]
OpenGLRenderer.cpp     [all...]
DisplayListCanvas.h 204 virtual void drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
OpenGLRenderer.h 175 void drawBitmapMesh(const SkBitmap* bitmap, int meshWidth, int meshHeight,
DisplayListOp.h 741 DrawBitmapMeshOp(const SkBitmap* bitmap, int meshWidth, int meshHeight,
743 : DrawBoundedOp(vertices, 2 * (meshWidth + 1) * (meshHeight + 1), paint),
744 mBitmap(bitmap), mMeshWidth(meshWidth), mMeshHeight(meshHeight),
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java     [all...]
  /frameworks/base/libs/hwui/hwui/
Canvas.h 205 virtual void drawBitmapMesh(const SkBitmap& bitmap, int meshWidth, int meshHeight,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
NopCanvas.java 239 public void drawBitmapMesh(Bitmap bitmap, int meshWidth, int meshHeight, float[] verts,
  /frameworks/base/core/jni/
android_graphics_Canvas.cpp 464 jint meshWidth, jint meshHeight, jfloatArray jverts,
466 const int ptCount = (meshWidth + 1) * (meshHeight + 1);
473 get_canvas(canvasHandle)->drawBitmapMesh(bitmap, meshWidth, meshHeight,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java     [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 360 milliseconds

1 2