Lines Matching refs:pCharDataBuffer
56 CharContainer_t* pCharDataBuffer; member
227 DEMOAssert(pFont->pCharDataBuffer && in DEMOFontPuts()
274 px1 = (u32)(pFont->pCharDataBuffer[index].minX + advanceX); in DEMOFontPuts()
275 px2 = (u32)(pFont->pCharDataBuffer[index].maxX + advanceX); in DEMOFontPuts()
276 py1 = (u32)(pFont->pCharDataBuffer[index].minY); in DEMOFontPuts()
277 py2 = (u32)(pFont->pCharDataBuffer[index].maxY); in DEMOFontPuts()
286 ps1 = (u32)pFont->pCharDataBuffer[index].minS; in DEMOFontPuts()
287 ps2 = (u32)pFont->pCharDataBuffer[index].maxS; in DEMOFontPuts()
288 pt1 = (u32)pFont->pCharDataBuffer[index].minT; in DEMOFontPuts()
289 pt2 = (u32)pFont->pCharDataBuffer[index].maxT; in DEMOFontPuts()
303 advanceX += pFont->pCharDataBuffer[index].xAdvance; in DEMOFontPuts()
326 DEMOAssert(s_FontP.pCharDataBuffer && in DEMOFontSetSpacing()
342 DEMOAssert(s_FontP.pCharDataBuffer && in DEMOFontSetGridSize()
352 DEMOAssert(s_FontP.pCharDataBuffer && in DEMOFontSetColor()
365 DEMOAssert(s_FontP.pCharDataBuffer && in DEMOFontSetZValue()
428 if (pFont->pCharDataBuffer) in GetFontCharData()
444 pFont->pCharDataBuffer = s_CharDataBufferP; in GetFontCharData()
448 pFont->pCharDataBuffer = s_CharDataBufferF; in GetFontCharData()
469 pFont->pCharDataBuffer[i].id = id; in GetFontCharData()
470 pFont->pCharDataBuffer[i].minS = (s32)x; in GetFontCharData()
471 pFont->pCharDataBuffer[i].minT = (s32)(pFont->fontTextureHeight - h - y - 1); in GetFontCharData()
472 pFont->pCharDataBuffer[i].maxS = (s32)(x + w); in GetFontCharData()
473 pFont->pCharDataBuffer[i].maxT = (s32)(pFont->fontTextureHeight - y - 1); in GetFontCharData()
474 pFont->pCharDataBuffer[i].minX = (s32)xOffset; in GetFontCharData()
475 pFont->pCharDataBuffer[i].minY = (s32)(lineHeight - yOffset - h); in GetFontCharData()
476 pFont->pCharDataBuffer[i].maxX = (s32)(xOffset + w); in GetFontCharData()
477 pFont->pCharDataBuffer[i].maxY = (s32)(lineHeight - yOffset); in GetFontCharData()
478 pFont->pCharDataBuffer[i].xAdvance = (s32)xAdvance; in GetFontCharData()
486 if(pFont->pCharDataBuffer[i].xAdvance > maxCharWidth) in GetFontCharData()
488 maxCharWidth = (f32)pFont->pCharDataBuffer[i].xAdvance; in GetFontCharData()
581 pFont->pCharDataBuffer[id-32].id == id ) in BSearchIndex()
591 if( pFont->pCharDataBuffer[mid].id < id ) in BSearchIndex()
595 else if( id < pFont->pCharDataBuffer[mid].id ) in BSearchIndex()