Searched defs:drawPosText (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp369 status_t DisplayListRenderer::drawPosText(const char* text, int bytesCount, int count, function in class:android::uirenderer::DisplayListRenderer
H A DOpenGLRenderer.cpp2723 status_t OpenGLRenderer::drawPosText(const char* text, int bytesCount, int count, function in class:android::OpenGLRenderer
2729 // NOTE: Skia does not support perspective transform on drawPosText yet
/frameworks/base/core/jni/android/graphics/
H A DSkiaCanvas.cpp122 virtual void drawPosText(const uint16_t* text, const float* positions, int count,
687 mCanvas->drawPosText(text, count << 1, reinterpret_cast<const SkPoint*>(positions), paintCopy);
690 void SkiaCanvas::drawPosText(const uint16_t* text, const float* positions, int count, int posCount, function in class:android::SkiaCanvas
701 mCanvas->drawPosText(text, count, posPtr, paintCopy);
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1764 public void drawPosText(@NonNull char[] text, int index, int count, @NonNull float[] pos, method in class:Canvas
1787 public void drawPosText(@NonNull String text, @NonNull float[] pos, @NonNull Paint paint) { method in class:Canvas
1788 drawPosText(text.toCharArray(), 0, text.length(), pos, paint);

Completed in 164 milliseconds