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

/frameworks/base/rs/java/android/renderscript/
H A DFont.java159 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { argument
162 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
175 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { argument
176 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
182 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { argument
187 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
198 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { argument
214 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
238 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { argument
242 return createFromFile(rs, res, fontPath, pointSize);
[all...]

Completed in 56 milliseconds