-
Thanks for the demo, and great article at http://wangling.me/2011/06/time-warp-in-animation.html
For the sublayers added to the parent layer, is it possible to "time warp" the parent layer so that th…
-
I was just looking at the implementation of requestAnimationFrame :
`return ej.setTimeout(function(){ cb(ej.performanceNow()); }, 16);`
is this recommended over `setTimeout(..., 16);`
Also I was …
weepy updated
11 years ago
-
I have a custom view set up that is working properly on my simulator, but when I run it on an iPad the following things are different:
- There is no swipe velocity -- the items simply stop moving when…
-
I have a custom-drawn UIView (using the standard methods drawRect: and drawLayer:withContext:). When I animate the view, I need to redraw it's CALayers by triggering their drawLayer method DURING the …
-
In my application, through various user actions, the XBCUrlView might be unloaded during an animation.
When my ViewController's viewDidUnload method gets called, I call [xbCurlView stopAnimation] and…
-
I'm a total noob wrt OpenGL so forgive me if the answer is obvious. I'm using XBPage curl to create a children's book/app. Everything seems to be working great but I've got what appears to be a mass…
-
I was trying to run my game at a low FPS for my poor old 3Gs, but there seems to be some weirdness around the setTimeout timers:
```
setTimeout(..., 1000/10) = correctly runs 10 fps
setTimeout(..., 1…
-
I am using GPUImageBrightnessFilter. I have a slider that sets the brightness from -1.0 to 1.0.
Here is my slider callback:
- (void) intensityChanged:(id)sender
{
DLog(@"New brightness: %f", self…