SHOW-STOPPER bug in the most recent daily build!

This is a true show-stopper which I think should get the highest possible attention: in the latest daily build: I cannot draw even the simplest circle or rectangle!

I’ve submitted a bug report, and the case # is 13056

If you want to see the bug in a very simple test case, please download this sample code and run main.lua (NOTE: use the iPhone or iPad view):

http://www.liligamespot.com/corona.zip

[import]uid: 94684 topic_id: 23629 reply_id: 323629[/import]

It seems to be due to a setting in your config.lua. I tried the same lines in my existing project and the circle rendered accurately.

I think I’ve narrowed it down to setting antialias to true.
config.lua, circle renders in full:

application = {  
  
 content ={  
 width=768,  
 height=1024,  
 scale="zoomEven",  
 xAlign = "left",  
 yAlign = "top",  
 fps = 60,  
 antialias = false,  
 }  
}  

config.lua, circle renders like pacman:

[code]
application = {

content ={
width=768,
height=1024,
scale=“zoomEven”,
xAlign = “left”,
yAlign = “top”,
fps = 60,
antialias = true,
}
}
[/code] [import]uid: 120 topic_id: 23629 reply_id: 94841[/import]

Yes, it does appear to be the anti-aliasing… this is still a show-stopper though, since anti-aliasing is very important!! [import]uid: 94684 topic_id: 23629 reply_id: 94843[/import]

Yes, without a doubt a showstopper [import]uid: 120 topic_id: 23629 reply_id: 94848[/import]

This whole new iPad thing is a blinking nightmare!

For the sake of a few possible customers :
I need a new daily build.
But I need a new Xcode.
But wait: I need a new iTunes.
But wait: I need iOS 5.1
But wait: OSX 10.73 wants to install too.
New firmware? 2.75Gb of updates?
XCode 4.3.1 widely reported to fail to download from iITunes
I might need new graphics.

… ok… breathe deeply…
Right… here we go…

Aaarrgggghh: Circles don’t draw? Woahhhh…stop!
My head is spinning.

I’ve just taken antialias out of my own config.lua and I can’t actually see a difference.
So I guess I’ll risk it. I may need a valium.

:slight_smile:

[import]uid: 108660 topic_id: 23629 reply_id: 94850[/import]

We know. It is an antialiasing bug that will be looked at but right now as I type this I have no ETA.

Turn off antialiasing. That’s the current work around been suggesting and it works.

C. [import]uid: 24 topic_id: 23629 reply_id: 95228[/import]