Skip to content

Commit 81dab64

Browse files
committed
Merge branch 'master' into docking
2 parents 355cb58 + 96e3b14 commit 81dab64

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

imgui_draw.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -2825,6 +2825,13 @@ void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsig
28252825
*data = table[*data];
28262826
}
28272827

2828+
void ImFontAtlasBuildGetOversampleFactors(const ImFontConfig* cfg, int* out_oversample_h, int* out_oversample_v)
2829+
{
2830+
// Automatically disable horizontal oversampling over size 36
2831+
*out_oversample_h = (cfg->OversampleH != 0) ? cfg->OversampleH : (cfg->SizePixels * cfg->RasterizerDensity > 36.0f || cfg->PixelSnapH) ? 1 : 2;
2832+
*out_oversample_v = (cfg->OversampleV != 0) ? cfg->OversampleV : 1;
2833+
}
2834+
28282835
#ifdef IMGUI_ENABLE_STB_TRUETYPE
28292836
// Temporary data for one source font (multiple source fonts can be merged into one destination ImFont)
28302837
// (C++03 doesn't allow instancing ImVector<> with function-local types so we declare the type here.)
@@ -2863,13 +2870,6 @@ static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector<int>*
28632870
out->push_back((int)(((it - it_begin) << 5) + bit_n));
28642871
}
28652872

2866-
void ImFontAtlasBuildGetOversampleFactors(const ImFontConfig* cfg, int* out_oversample_h, int* out_oversample_v)
2867-
{
2868-
// Automatically disable horizontal oversampling over size 32
2869-
*out_oversample_h = (cfg->OversampleH != 0) ? cfg->OversampleH : (cfg->SizePixels * cfg->RasterizerDensity > 32.0f || cfg->PixelSnapH) ? 1 : 2;
2870-
*out_oversample_v = (cfg->OversampleV != 0) ? cfg->OversampleV : 1;
2871-
}
2872-
28732873
static bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas)
28742874
{
28752875
IM_ASSERT(atlas->ConfigData.Size > 0);

0 commit comments

Comments
 (0)