Lines Matching refs:rsc
36 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) {
296 Font * Font::create(Context *rsc, const char *name, float fontSize, uint32_t dpi,
298 rsc->mStateFont.checkInit();
299 Vector<Font*> &activeFonts = rsc->mStateFont.mActiveFonts;
308 Font *newFont = new Font(rsc);
312 rsc->mStateFont.precacheLatin(newFont);
398 void FontState::init(Context *rsc) {
399 mRSC = rsc;
813 void FontState::deinit(Context *rsc) {
860 RsFont rsi_FontCreateFromFile(Context *rsc,
863 Font *newFont = Font::create(rsc, name, fontSize, dpi);
870 RsFont rsi_FontCreateFromMemory(Context *rsc,
874 Font *newFont = Font::create(rsc, name, fontSize, dpi, data, data_length);