Searched refs:pointSize (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/rs/java/android/renderscript/ |
D | Font.java | 161 … static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { in createFromFile() argument 164 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi); in createFromFile() 177 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { in createFromFile() argument 178 return createFromFile(rs, res, path.getAbsolutePath(), pointSize); in createFromFile() 184 … static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { in createFromAsset() argument 189 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi); in createFromAsset() 200 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { in createFromResource() argument 216 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset); in createFromResource() 241 … Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { in create() argument 245 return createFromFile(rs, res, fontPath, pointSize); in create()
|