python - Empty text labels in Kivy for Android -


i trying implement kivy example

http://python-for-android.readthedocs.org/en/latest/helloworld/

the text labels in both button label appear blank when compile (on kivy's ubuntu vm) , run on android device (its google nexus 1). example runs fine on laptop.

how around issue , text display? appreciate on this. in advance.

it's bug #1192 in latest version 1.7.0, phones don't support power-of-two textures. i've changed how textures created, missed 1 case.

the issue happen on phone crappy gpu :) yes crappy, because opengl es 2 specification says power-of-two textures mandatory. guess what, adreno 200 series (and maybe others) doesn't support them, claim gles 2.

anyway, bug has been fixed yesterday, , i'll release new minor release in day or two. if compiled python-for-android yourself, do:

cd python-for-android git clean -dxf git pull origin master 

then restart compilation ./distribute.sh ... works.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -