Lines Matching refs:f32
59 f32 fontTextureWidth;
62 f32 fontTextureHeight;
68 f32 gridOffsetY;
71 f32 gridOffsetX;
102 static void UpdateScale(DEMOFontFontData* pFont, f32 scaleX, f32 scaleY);
184 void DEMOFontPrintf(f32 column, f32 line, const char* pFmt, ... ) in DEMOFontPrintf()
208 void DEMOFontPuts(f32 column, f32 line, const char* pStr) in DEMOFontPuts()
215 f32 basePos[3]; in DEMOFontPuts()
249 basePos[0] = (f32) offsetX; in DEMOFontPuts()
250 basePos[1] = (f32) offsetY; in DEMOFontPuts()
339 void DEMOFontSetGridSize(f32 xGrid, f32 yGrid) in DEMOFontSetGridSize()
349 void DEMOFontSetColor(f32 r, f32 g, f32 b, f32 a) in DEMOFontSetColor()
362 void DEMOFontSetZValue(f32 zValue) in DEMOFontSetZValue()
376 void DEMOFontGetCharSize(f32 *pCharWidth, f32 *pCharHeight) in DEMOFontGetCharSize()
402 static void UpdateScale(DEMOFontFontData* pFont, f32 scaleX, f32 scaleY) in UpdateScale()
419 f32 lineHeight; in GetFontCharData()
420 f32 maxCharWidth = 0.0f; in GetFontCharData()
421 f32 maxCharHeight = 0.0f; in GetFontCharData()
435 pFont->fontTextureWidth = (f32)pFontHeader[0]; in GetFontCharData()
436 pFont->fontTextureHeight = (f32)pFontHeader[1]; in GetFontCharData()
437 lineHeight = (f32)pFontHeader[4]; in GetFontCharData()
467 f32 charHeight = (f32)(h + yOffset); in GetFontCharData()
488 maxCharWidth = (f32)pFont->pCharDataBuffer[i].xAdvance; in GetFontCharData()