Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
2answers
845 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, ...
3
votes
2answers
387 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 ...
2
votes
1answer
65 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 ...
2
votes
1answer
293 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. ...
2
votes
1answer
141 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 ...
2
votes
3answers
762 views

Getting stuck at 40 fps even with using CADisplayLink?

At first I used NSTimer and ran into the problem of the frame rate being stuck at 40 frames per second. I've read about using CADisplayLink to fix the problem. It seemed to work for a while, but ...
1
vote
0answers
23 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 ...
1
vote
0answers
36 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 ...
1
vote
1answer
42 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 ...
1
vote
1answer
130 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 ...
1
vote
2answers
684 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
124 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 ...
1
vote
1answer
252 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 ...
1
vote
1answer
494 views

CADisplayLink behaves similar to NSTimer, framerate bug

I have implemented CADisplayLink, but yet it behaves similar to NSTimer in that when there are a lot of draws it locks the fps to 40 and never gets out of there, even if there are a lot fewer draws ...
1
vote
3answers
1k views

UIScrollView broken and halts scrolling with OpenGL rendering (related CADisplayLink, NSRunLoop)

Solution note, Not a question. UIScrollView suspends OpenGL rendering by preventing firing CADisplayLink tick when CADisplayLink registered with NSDefaultRunLoopMode. But, if you use ...
0
votes
0answers
11 views

Move an image with CADisplaylink is good for performance?

So can you tell me if how I move my image is good for merformance: -(void)moveImage{ imageView.center=CGPointMake(imageView.center.x + X, imageView.center.y + Y); } - (void)viewDidLoad { [super ...
0
votes
0answers
11 views

CADisplayLink, CABAsicAnimation, or Thread for better performance?

well I'm animating multiple images at the same time in my app .And I would like to know which one between CADisplayLink, CABAsicAnimation, or Thread is better for performance.(I also need the current ...
0
votes
0answers
26 views

Is it possible to have an NSThread and CADisplayLink work together?

I would like to setup an NSThread at a lower priority than CADisplayLink and then do message passing (I'm not a fan of resource locking) between the two of them. I'm new to iOS threading and have no ...
0
votes
0answers
42 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
65 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 ...
0
votes
1answer
112 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 ...
0
votes
1answer
153 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
47 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 ...
0
votes
1answer
76 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 ...
0
votes
0answers
86 views

Transition to UIImageView on video completion

I am trying to replace flash version of application at http://www.builderconcepthome2011.com/concept-home.php#/garageInterior_0 for iPad using Core Animation. So the requirement is to show an image ...
0
votes
0answers
150 views

CADisplayLink target selector half way finished while deallocating the object

I have logging within the target selector that my CADisplayLink is calling. When the "viewDidDisappear" method is called when removing the UIViewController, and deallocating it, I can see the last ...
0
votes
1answer
124 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
109 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
0
votes
2answers
198 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 ...
0
votes
1answer
372 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 ...
0
votes
0answers
184 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
0answers
198 views

xcode animation iphone problem CADiplayLink

HI every body I'm french so scuse me for my english. My probleme is that I have two animations at the same time, the first is a ball wich is moving in the screen and the other is me drawing a line. ...
0
votes
1answer
369 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
444 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
0answers
766 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. ...
0
votes
2answers
662 views

Constant-velocity rotation in OpenGL ES view using CADisplayLink on iPhone

My OpenGL ES classes and code are derived from Apple's GLES2Sample code sample. I use them to show 3D objects rotating smoothly around one axis, at what I expect to be a constant rotation speed. ...