The program shows a single green circle, not two circles. The overlap region of the two circles is a darker green.
I ran the same program on my linux box and it looked different. On linux, there were two dark green circles,
with a light green overlap.
Search found 5 matches
- Thu Dec 24, 2015 7:49 pm
- Forum: Support and Development
- Topic: On Android, love.graphics.print() just shows black blocks
- Replies: 12
- Views: 6751
- Thu Dec 24, 2015 7:16 pm
- Forum: Support and Development
- Topic: On Android, love.graphics.print() just shows black blocks
- Replies: 12
- Views: 6751
Re: On Android, love.graphics.print() just shows black block
Here is the output of the program: adb logcat | \fgrep LOVE I/SDL/APP ( 6797): [LOVE] Renderer info: OpenGL ES OpenGL ES 2.0 Vivante Corporation Vivante GC1000 I/SDL/APP ( 6797): [LOVE] I/SDL/APP ( 6797): [LOVE] rgb10a2 supported? false I/SDL/APP ( 6797): [LOVE] r32f supported? false I/SDL/APP ( 679...
- Thu Dec 24, 2015 6:40 am
- Forum: Support and Development
- Topic: On Android, love.graphics.print() just shows black blocks
- Replies: 12
- Views: 6751
Re: On Android, love.graphics.print() just shows black block
Your first test program generates all white boxes. Your second test program just gives a black screen. I did an experiment with .png images also. Grabbed a png of Walter White :awesome: and wrote a tiny sample program to load and display it. The program worked fine on my linux development box, but j...
- Wed Dec 23, 2015 10:21 pm
- Forum: Support and Development
- Topic: On Android, love.graphics.print() just shows black blocks
- Replies: 12
- Views: 6751
Re: On Android, love.graphics.print() just shows black block
It is a Samsung Galaxy Tab4 tablet, running Android 4.4.2. I just bought it about a month ago.
Thanks,
Greg J.
Thanks,
Greg J.
- Wed Dec 23, 2015 9:32 pm
- Forum: Support and Development
- Topic: On Android, love.graphics.print() just shows black blocks
- Replies: 12
- Views: 6751
On Android, love.graphics.print() just shows black blocks
I run the following tiny program on Android: function love.load() font = love.graphics.newFont(36) love.graphics.setFont(font) end function love.draw() love.graphics.setBackgroundColor(120,120,120) love.graphics.print("Hello World!", 400, 300) end The above works fine if I run it on my lin...