1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

RenderingHelpers: Implement GlyphCache in terms of LruCache

This commit is contained in:
reuk 2024-02-28 13:44:35 +00:00
parent bc654f8007
commit c40da067cd
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
5 changed files with 43 additions and 129 deletions

View file

@ -35,11 +35,6 @@
namespace juce
{
struct GraphicsFontHelpers
{
static auto compareFont (const Font& a, const Font& b) { return Font::compare (a, b); }
};
static auto operator< (const Font& a, const Font& b)
{
return GraphicsFontHelpers::compareFont (a, b);