diff options
| author | 2011-05-13 11:09:19 -0700 | |
|---|---|---|
| committer | 2011-05-13 11:09:19 -0700 | |
| commit | 9dec462c1f522533620be3c70f2fc60e69368c1a (patch) | |
| tree | 41edf6e4ef55ef8027af8c1007f85c372cb4a913 /libs/hwui/OpenGLRenderer.cpp | |
| parent | 6ebbc077404a2ae1c82c746faa7b941901340569 (diff) | |
| parent | 2ea75880142152b3a9993cb245754d73c05749a7 (diff) | |
Merge "Prepare OpenGLRenderer to use glyphs from TextLayoutCache"
Diffstat (limited to 'libs/hwui/OpenGLRenderer.cpp')
| -rw-r--r-- | libs/hwui/OpenGLRenderer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index 5a86fe3880bb..3232f6f790fd 100644 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -2059,6 +2059,11 @@ void OpenGLRenderer::drawText(const char* text, int bytesCount, int count, drawTextDecorations(text, bytesCount, length, oldX, oldY, paint); } +void OpenGLRenderer::drawGlyphs(const char* glyphs, int index, int count, float x, float y, + SkPaint* paint) { + // TODO +} + void OpenGLRenderer::drawPath(SkPath* path, SkPaint* paint) { if (mSnapshot->isIgnored()) return; |