Home
last modified time | relevance | path

Searched refs:h_oversample (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimstb_truetype.h627 unsigned char h_oversample, v_oversample; // don't set these, they're used internally member
636 STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsign…
687 unsigned int h_oversample, v_oversample; member
3817 spc->h_oversample = 1; in stbtt_PackBegin()
3835 STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsign… in stbtt_PackSetOversampling() argument
3837 STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE); in stbtt_PackSetOversampling()
3839 if (h_oversample <= STBTT_MAX_OVERSAMPLE) in stbtt_PackSetOversampling()
3840 spc->h_oversample = h_oversample; in stbtt_PackSetOversampling()
3997 ranges[i].h_oversample = (unsigned char) spc->h_oversample; in stbtt_PackFontRangesGatherRects()
4007 scale * spc->h_oversample, in stbtt_PackFontRangesGatherRects()
[all …]
Dimgui_draw.cpp1910 src_tmp.PackRange.h_oversample = (unsigned char)cfg.OversampleH; in ImFontAtlasBuildWithStbTruetype()