Using exact density (exact dpi) in C++ core.

This commit is contained in:
Vladimir Byko-Ianko 2015-11-16 16:47:05 +03:00
parent 82c2b7d845
commit 44c13dae8b
3 changed files with 8 additions and 4 deletions

View file

@ -363,7 +363,7 @@ void Framework::InitSingleFrameRenderer(graphics::EDensity density, int exactDen
ASSERT(!IsSingleFrameRendererInited(), ());
if (m_cpuDrawer == nullptr)
{
CPUDrawer::Params params(GetGlyphCacheParams(density));
CPUDrawer::Params params(GetGlyphCacheParams(density, exactDensityDPI));
params.m_visualScale = graphics::visualScaleExact(exactDensityDPI);
params.m_density = density;

View file

@ -40,7 +40,7 @@ RenderPolicy::RenderPolicy(Params const & p,
m_doForceUpdate(false),
m_density(p.m_density),
m_exactDensityDPI(p.m_exactDensityDPI),
m_visualScale(graphics::visualScale(p.m_density)),
m_visualScale(graphics::visualScaleExact(p.m_exactDensityDPI)),
m_skinName(p.m_skinName)
{
m_bgColors.resize(scales::UPPER_STYLE_SCALE+1);
@ -341,13 +341,16 @@ RenderPolicy * CreateRenderPolicy(RenderPolicy::Params const & params)
}
graphics::GlyphCache::Params GetGlyphCacheParams(graphics::EDensity density, size_t cacheMaxSize)
graphics::GlyphCache::Params GetGlyphCacheParams(graphics::EDensity density,
int exactDensity,
size_t cacheMaxSize)
{
return graphics::GlyphCache::Params(UNICODE_BLOCK_FILE,
WHITE_LIST_FILE,
BLACK_LIST_FILE,
cacheMaxSize,
density,
exactDensity,
false);
}

View file

@ -201,5 +201,6 @@ protected:
RenderPolicy * CreateRenderPolicy(RenderPolicy::Params const & params);
graphics::GlyphCache::Params GetGlyphCacheParams(graphics::EDensity density, size_t cacheMaxSize = 2 * 1024 * 1024);
graphics::GlyphCache::Params GetGlyphCacheParams(graphics::EDensity density,
int exactDensity, size_t cacheMaxSize = 2 * 1024 * 1024);
graphics::ResourceManager::GlyphCacheParams GetResourceGlyphCacheParams(graphics::EDensity density, size_t cacheMaxSize = 2 * 1024 * 1024);