tomaka / glium_text

Text rendering with glium
48 stars 35 forks source link

FontTexture::new(..) is very very slow when load CJK font #7

Open tioover opened 9 years ago

tioover commented 9 years ago

Example font: https://github.com/adobe-fonts/source-han-sans/ There are a large number of Unicode characters, they do not require all converted Texture. This will block the process tens of seconds. Perhaps we should render the texture in TextDisply::new(..), like SDL_ttf. I will try to do this