Home | History | Annotate | Download | only in renderscript

Lines Matching refs:fontId

163         long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
165 if(fontId == 0) {
168 Font rsFont = new Font(fontId, rs);
188 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
189 if(fontId == 0) {
192 Font rsFont = new Font(fontId, rs);
212 long fontId = 0;
215 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
220 if(fontId == 0) {
223 Font rsFont = new Font(fontId, rs);