diff options
author | Stephen Hines <srhines@google.com> | 2011-06-23 16:18:28 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2011-06-23 16:18:28 -0700 |
commit | 3d782666d73c3ce0ffb77e71db7309bc3297ecb8 (patch) | |
tree | dc4c36400b60d9f803edc7382568455de555a531 /graphics/java | |
parent | 8969d9924c662ab4cdacc342bbdc33756db730be (diff) | |
download | frameworks_base-3d782666d73c3ce0ffb77e71db7309bc3297ecb8.zip frameworks_base-3d782666d73c3ce0ffb77e71db7309bc3297ecb8.tar.gz frameworks_base-3d782666d73c3ce0ffb77e71db7309bc3297ecb8.tar.bz2 |
Remove verbose logging, update test app and docs.
Change-Id: I6659c5e51a747011239128dc2682a5d78aecfa26
Diffstat (limited to 'graphics/java')
-rw-r--r-- | graphics/java/android/renderscript/Font.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/java/android/renderscript/Font.java b/graphics/java/android/renderscript/Font.java index fa27590..616990a 100644 --- a/graphics/java/android/renderscript/Font.java +++ b/graphics/java/android/renderscript/Font.java @@ -201,12 +201,14 @@ public class Font extends BaseObj { /** * Accepts one of the following family names as an argument - * and will attemp to produce the best match with a system font + * and will attempt to produce the best match with a system font: + * * "sans-serif" "arial" "helvetica" "tahoma" "verdana" * "serif" "times" "times new roman" "palatino" "georgia" "baskerville" * "goudy" "fantasy" "cursive" "ITC Stone Serif" * "monospace" "courier" "courier new" "monaco" - * Returns default font if no match could be found + * + * Returns default font if no match could be found. */ static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { String fileName = getFontFileName(familyName, fontStyle); |