Home
last modified time | relevance | path

Searched refs:fontBits (Results 1 – 4 of 4) sorted by relevance

/dports/astro/celestia-gtk/celestia-1.6.1/src/celtxf/
H A Dtexturefont.cpp395 unsigned char* fontBits = new unsigned char[rowBytes * texHeight]; in load() local
397 if (fontImage == NULL || fontBits == NULL) in load()
401 if (fontBits != NULL) in load()
402 delete[] fontBits; in load()
410 in.read(reinterpret_cast<char*>(fontBits), rowBytes * texHeight); in load()
422 if ((fontBits[y * rowBytes + (x >> 3)] & (1 << (x & 0x7))) != 0) in load()
430 delete[] fontBits; in load()
/dports/astro/celestia/celestia-1.6.1/src/celtxf/
H A Dtexturefont.cpp395 unsigned char* fontBits = new unsigned char[rowBytes * texHeight]; in load() local
397 if (fontImage == NULL || fontBits == NULL) in load()
401 if (fontBits != NULL) in load()
402 delete[] fontBits; in load()
410 in.read(reinterpret_cast<char*>(fontBits), rowBytes * texHeight); in load()
422 if ((fontBits[y * rowBytes + (x >> 3)] & (1 << (x & 0x7))) != 0) in load()
430 delete[] fontBits; in load()
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/ppui/
H A DFont.cpp1584 fontBits = bits; in PPFont()
1586 bitstream = new Bitstream(fontBits, 0); in PPFont()
1770 fontInstances[j]->fontBits = (pp_uint8*)fontEntries[i].data; in selectFontFace()
1771 …fontInstances[j]->bitstream->setSource(fontInstances[j]->fontBits, fontEntries[i].width*fontEntrie… in selectFontFace()
H A DFont.h119 pp_uint8* fontBits;