2012-10-09 09:40:11 +02:00
|
|
|
menu "General"
|
2012-11-09 01:50:36 +01:00
|
|
|
choice
|
|
|
|
prompt "Buffer text configuration"
|
|
|
|
default APPL_BUFFER_FONT_NORMAL
|
|
|
|
help
|
|
|
|
Buffer display mode :
|
|
|
|
0 : Basic Sprite font mode.
|
|
|
|
==> Old standard mode fast but need to reaload distint font for every size
|
|
|
|
1 : Distance Field.
|
|
|
|
==> New theoric mode for the display of the font ==> really slow but insteresting ...
|
2012-10-09 09:40:11 +02:00
|
|
|
config APPL_BUFFER_FONT_NORMAL
|
2012-11-09 01:50:36 +01:00
|
|
|
bool "0: Basic Sprite font mode"
|
|
|
|
config APPL_BUFFER_FONT_DISTANCE_FIELD
|
|
|
|
bool "1: Distance Field"
|
|
|
|
endchoice
|
2012-10-09 09:40:11 +02:00
|
|
|
endmenu
|