A CADisplayLink object is a timer object that allows your application to synchronize its drawing to the refresh rate of the display.

learn more… | top users | synonyms

0
votes
2answers
55 views

CADisplay link seems to be speeding up each time method is called

I'm working on an iPhone app and in my app there's an object that moves from the top to the bottom of the screen. To do this I use a CADisplay link. Once the object leaves the screen it is supposed to ...
0
votes
0answers
88 views

App stops receiving NSTimer selector callbacks during any UI scrolling operation

I have an OpenGL animation drawing on the main window fired by an NSTimer. If I bring up a popover window with a scrollable UITableView menu, the animation freezes while scrolling is in process. Once ...
0
votes
2answers
108 views

Running multiple CADisplayLinks at a time ?

I'm using CADisplayLink as a timer for strobing. I have 2 CADisplayLinks: The main one (this runs during the whole thing): SMPTELink = [CADisplayLink displayLinkWithTarget:self ...
4
votes
2answers
312 views

CADisplayLink running lower frame rate on iOS5.1

I'm using CADisplayLink in my iPhone app. Here is the relevant code: SMPTELink = [CADisplayLink displayLinkWithTarget:self selector:@selector(onTick)]; SMPTELink.frameInterval = 2;//30fps 60/n = ...
19
votes
2answers
636 views

Best way to mirror a UIWebView

I need to mirror a UIWebView's CALayers to a smaller CALayer. The smaller CALayer is essentially a pip of the larger UIWebView. I'm having difficulty in doing this. The only thing that comes close is ...
0
votes
1answer
122 views

How many times a second should CADisplayLink's displayLink be called?

I have a CADisplayLink running in line with Chipmunk Physics, and I'm getting very slow performance. I put an NSLog in the method that's called on the CADisplayLink update, and it's being called an ...
1
vote
1answer
112 views

What is the android relevant of CADisplayLink(iOS) or CompositionTarget(WP)

I need to update my animations per frame, on iOS I have CADisplayLink, on WinPhone I have CompositionTarget, but how do I do that on Android? Currently I'm using a Timer alongside a Handler, but I ...
0
votes
1answer
108 views

iOS: How to make the CADisplayLink's event called BEFORE actual screen draw?

I'm building a cross platform UI library's iOS implementation using UIKit, one of the library's primary function is allow user to change the child control's size freely, and the parent control's size ...
0
votes
1answer
150 views

Convert CADisplayLink.timestamp CFTimeInterval to host time (uint64)

I am getting a callback from CADisplayLink. The link has a timestamp in CFTimeInterval. How to you convert that timestamp to hosttime in uint64? Thanks!
1
vote
1answer
219 views

Programming CADisplayLink animation [closed]

I don't know whats the problem with my code but no ball animation running the paddle is draggable but the ball is not moving. I'm running in simulator. I'm new to game programming. gameTimer = ...
0
votes
1answer
150 views

Upgraded my iPhone project to universal. CADisplayLink now only does 30fps

Is there any way to find out why CADisplayLink is running at 30fps, when given a "1" as its frame interval? I was running the app on an iPad mini. When ran as an iPhone app inside the iPad mini ...
2
votes
0answers
211 views

Frame rate compromised with CADisplayLink and drawRect

First of all, I want to say hello to everybody since I am new here and I have found a lot of solutions to my problems in this page. Great job. My question is about iOS development. I am writing a ...
0
votes
0answers
124 views

CADisplayLink not firing often enough

I am using CADisplayLink to perform synchronization between sound and animations. The synchronization needs to be really precise and currently running CADisplayLink at frameInterval of 1 does not call ...
1
vote
1answer
310 views

Why does dispatch_semaphore_wait() return YES all the time even when I'm not scrolling?

Brad Larson delivered a solution for the CADisplayLink freeze issue when scroll views are scrolling. My OpenGL ES draw method is called by a CADisplayLink, and I tried Brad's technique but can't make ...
3
votes
1answer
315 views

Why does UIScrollView pause my CADisplayLink?

I have a view backed by a CAEAGLLayer, which is inside a UIScrollView. When I begin scrolling, the CADisplayLink that calls the -draw method of openGL view stops getting called. I verified that my ...
0
votes
0answers
85 views

Order of runloop events with CADisplayLink and Touch events?

I would like to know if the touch events are called before the displayLink in the same runloop cycle. Does anyone know the answer to this?
1
vote
2answers
450 views

CADisplayLink at iOS 6.0 not retaining target

I have a such code: NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:[self methodSignatureForSelector:@selector(updateFrame)]]; [invocation setTarget:self]; [invocation ...
0
votes
1answer
188 views

iOS OpenGL ES 1.1 jerky animation using CADisplayLink (reboot fixes for a while)

I'm using OpenGL ES 1.1 and CADisplayLink to animate a 3d scene. If the iOS device has been rebooted fairly recently, the animation is smooth and the time delta between two displayLink.timestamp calls ...
1
vote
1answer
196 views

CADisplayLink on iPhone 3GS and iPhone 4 drops from 60 to 40 FPS randomly

I am using CADisplayLink to perform a function called gameLoop at 60 FPS and at first the application runs perfectly. Then at a random time (could be 5 seconds or 1 minute the fps drops to around 40 ...
2
votes
1answer
263 views

CADisplayLink Timestamp acts strange on device

For my game loop and certain animations I want to know the time interval that has passed since the last call of my render: method. For this I use the CADisplayLink and grab the current timestamp and ...
0
votes
1answer
194 views

IOS : CADisplay / UIScrollview and Navigation Controller

So I have managed to get my lovely GLKit 3D menu working with a UIScrollview and life is good until I push to another view controller and come back. So completely smooth movement, move to next ...
0
votes
1answer
206 views

Is it true that for iPad and iPhone, using CADisplayLink must be for 60fps?

In other words, can we choose to invoke the handler at 20 times per second, or at 45 times per second, or must it be 60 times per second? I guess one way to simulate it will be to use the timestamp ...
2
votes
1answer
505 views

crash with AVCapture based viewController

I m working on an app which use OpenGL VideoCapture inside a UIViewController on the first init of this controller I get this message in the console: wait_fences: failed to receive reply: 10004003 ...
0
votes
1answer
99 views

On the iPhone, is it possible for a touchesBegan:withEvent to fire while a CADisplayLink callback method is executing?

Wouldn't the touchesBegan:withEvent always fire "before" or "after" each iteration of the CADisplayLink callback? Edit: Here's my CADisplayLink instantiation: CADisplayLink *aDisplayLink = ...
2
votes
2answers
916 views

CADisplayLink with NSRunLoopCommonModes not executed for every frame when tracking UIScrollView?

I am trying to execute a small piece of code on every single frame in a regular (non-OpenGL) iPhone app. The goal is to have a frame counter so that I can measure (rather than guess) where the slow ...
1
vote
0answers
76 views

Can someone explain to me how scheduling works between a main thread and an NSThread?

For example is it doing something like SCHED_FIFO or SCHED_RR from pthreads? Can the scheduling policy be changed? Can priorities be assigned to the main thread and an NSThread? Ultimately I would ...
0
votes
0answers
395 views

CADisplayLink accuracy issues with OpenGL ES on iOS

My iOS game is currently using CADisplayLink for timing of OpenGL rendering operations. I've got a GCD dispatch queue running on a second thread that issues all the OpenGL rendering and state calls to ...
0
votes
1answer
1k views

Example of image animation using only Core Graphics and CADisplayLink

I am looking for an example of an image animation (animation using images from file) done with Core Graphics and CADisplayLink (Not UIKit, CAANimation, CALayer). real low level stuff. Does anyone know ...
1
vote
1answer
953 views

CADisplayLink in RunLoop not calling callback

I have the following code which should make drawFrame be called every frame but it doesn't: - (void)viewDidLoad { [super viewDidLoad]; displayLink = [viewReference.window.screen ...
2
votes
0answers
113 views

iOS: The grey screen between Default.png and the first OpenGL ES frame

I'm trying to port my previous openGL iPhone app to use Xcode's new OpenGL ES template, which uses CADisplayLink. WHat I've noticed is that after Default.png is displayed, and before the first frame ...
2
votes
1answer
1k views

How to correctly stop and resume a CADisplayLink?

I figured out a big problem with CADisplayLink. I have the most basic EAGLLayer with OpenGL ES 1.1 drawing a rotating triangle for testing. This needs a run loop method to be called at screen refresh ...
0
votes
2answers
159 views

call a method one time from another method which have a CADisplayLink on it

I would like to call from a method 'method1' another method 'method2'. The problem is that there is a CADisplayLink on 'method1' and when I want to call 'method2' from 'method1' it call it at 6Ofps so ...
1
vote
1answer
162 views

Communicating Data Between Model And View In IOS Programming

I am constructing an iPhone side-scroll video game from the ground up. I have an Enemy model that needs to change the position of an enemy's arms and legs. I need to communicate those changes to the ...
0
votes
1answer
170 views

Adding a CADisplayLink to Cocos2D

I have Cocos2D in my app and I use it as the game engine for my game. At this point I need to have a game loop fire at the rate the screen refreshes. So this leads me to think that I need to use ...
1
vote
1answer
354 views

CADisplayLink fires one additional time after stopping it

Everything was OK, until yesterday when my app started to behave weirdly. It works OK on simulator but on iPhone4 it performs one additional cycle even after stopping it. Here's my initializer that ...
4
votes
2answers
2k views

iPhone OpenGL ES glFlush() inconsistently slow

Seemingly at random (but typically consistent during any given program run), my presentRenderBuffer call is very slow. I tracked it down to a call to glFlush() which presentRenderBuffer makes, so now ...
5
votes
2answers
2k views

CADisplayLink forward declaration error

Okay, so I've been completely stumped by this compiler error for hours, and the problem is that all the googling I've done says it should work the way I have it! I'm following a book tutorial for ...
1
vote
0answers
196 views

iPhone app runs differently when launched from Xcode

I am working on a game that essentially has two timers to control gameplay. One timer is a CADisplayLink that makes a call to redraw the display (with OpenGL) every frame, so slightly under 60 Hz. The ...
0
votes
1answer
256 views

Timer 1 ms resolution for iOS

In my app I have an object(Car image) that needs to move on the screen. I need to schedule myFunction every 1ms if possible. I read apple documentation and I understood that NSTimer resolution is ...
0
votes
1answer
356 views

have multiple CADisplayLink on xcode

I would like to know if it is possible to have two CADisplayLink in an app ? sorry for my english I'm french
3
votes
1answer
1k views

CADisplayLink target selector being triggered after it is invalidated

I have a CADisplayLink that triggers a draw method in a Director object. I want to invalidate the CADisplayLink and then deallocate some singleton Cache objects that are used by the Director object. ...
1
vote
1answer
439 views

how to replace NSTimer with CADisplayLink?

I call a doPoof method using NSTimer as following: [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(doPoof:) userInfo:myCALayer repeats:FALSE]; How to replace the above ...
0
votes
2answers
405 views

Force redraw with CADisplayLink

I'm currently using CADisplayLink to show an OpenGL animation which works great. Sometimes, however a parameter changes and I need to redraw the view immediately and can't wait until the next frame is ...
34
votes
2answers
1k views

Cocoa drawing on different screens loses performance

I have a document-based app, where each document has one window with an NSScrollView that does some (fairly continuous) drawing using only Cocoa. To call the drawing, I am using a CVDisplayLink, ...
0
votes
1answer
543 views

CADisplayLink and static variable magic in Apple OpenGl ES Sample

I would like an explanation of why XCode's OpenGl ES Sample works, please. It does the following to start the drawFrame method (in the blablaViewController.m - name is dependent on the project's ...
3
votes
1answer
235 views

CADisplayLink swallows exceptions

I've noticed that when using CADisplayLink, exceptions just get swallowed: CADisplayLink *aDisplayLink = [[UIScreen mainScreen] displayLinkWithTarget:self selector:@selector(doIt)]; [aDisplayLink ...
0
votes
0answers
295 views

creating an update loop in iOS

What is the best way to create an update loop in iOS where I can repeatedly call various modules that wish to update as quickly as possible? Is CADisplayLink essentially the best object to use when ...
0
votes
1answer
494 views

CADisplayLink problem animation iphone xcode

Hi everybody I'm french so scuse me for my bad english. So my problem is when I use CADisplayLink to animate one image at 60fps, it works fine but when I want to animate two image I have near 40fps. ...
0
votes
1answer
692 views

Why isn't CADisplayLink working in this case?

I want to use CADisplayLink instead of NSTimer for an animation of a ball which is just moving, but with CADisplayLink it doesn't work. What could be the problem in the following code? #import ...
0
votes
1answer
1k views

iPhone/iPad, OpenGL ES, CADisplayLink

I've just started playing with OpenGL ES, mostly on iPad and have noticed some problems I cannot find the answer to. First I've tried using two EAGLViews using separate renderers in the same window. ...

1 2