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

/frameworks/base/rs/java/android/renderscript/
H A DFont.java160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { argument
163 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { argument
177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { argument
188 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
199 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { argument
215 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
239 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { argument
243 return createFromFile(rs, res, fontPath, pointSize);
[all...]

Completed in 339 milliseconds