as you know CEGUI's font rendering method is suitable for langguages those have small quantity of characters.
when the amount is quite large (i.e. CJK char set,igoring the Janpan and Korea chars,just for Chinese characters the number is amazing large), there's some problem,such as memory waste and font-texture creation (font init) laggage.
AFAIK,most CE fans modified the code to solve,or to lighten the problem here in my country,China.
one way of those solutins is,"lazy initializaiton" for each character,not for a page(256 chars maybe).that means each character in the font set is created on require,instead of a whole page.
also there's a problem that a font texture hold a set of glyph ,in which only one or two characters are used indeed,the rest chars in the page(the whole 256-char-texture) are not commonly used,even not used at all.
well i post the problem,hopping there's an "offical solution" for most users.
if there's no consideration for those problems,just igore everything here.
