0
votes
1answer
36 views
IPHONE: memory still allocated after releasing object???
Hi,
I have a method for drawing an object offscreen to a file, using quartz. The last lines of this method are:
CGRect LayerRect = CGRectMake(mX,mY, wLayer, hLayer);
CGContextDr …
0
votes
1answer
9 views
How do I release this CGPath when I need to return it
I have a method that returns a CGMutablePathRef, something like this:
- (CGMutablePathRef)somePath;
{
CGMutablePathRef theLine = CGPathCreateMutable();
CGPathMoveToPoint(t …
0
votes
0answers
4 views
OSX Quartz Event Taps: event types and how to edit events
Here's my code:
#import <ApplicationServices/ApplicationServices.h>
CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) { …
1
vote
1answer
45 views
iPhone: optimized drawing in quartz
I have created a CG context that is 800 pixels wide and 1200 pixels height. I have created CGLayer over this context that has been transformed (scaled, translated and rotated). So, …
0
votes
3answers
41 views
IPHONE: CGLayer using 17 times more memory as expected
I have created a 800x1200 context using this line:
CGSize sizeX = CGSizeMake(800, 1200);
CGLayerRef objectLayer = CGLayerCreateWithContext (context, sizeX, NULL);
over this cont …
0
votes
2answers
32 views
CALayer filters and bounds
Hi,
I'm just starting writing some Core Animation code and I've just spent a frustrating day trying to figure out a particular problem.
I have two layer-backed views that togethe …
1
vote
0answers
14 views
Thread Safety Of Custom Sequential CGDataProvider
When creating a custom sequential CGDataProvder to render a custom image format you specify the CGDataProviderSequentialCallbacks that should be used. While doing some optimization …
0
votes
2answers
211 views
How to get transition like Star Trek app?
I've modified the ViewTransitions app to use kCAScrollHorizontally. I've set transition in the app delegate to use kCATransitionPush rather than kCATransitionFade. However, I stil …
6
votes
4answers
408 views
Mac OS X: Can one process render to another process’s window?
Greetings!
I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that …
2
votes
2answers
467 views
Simple iPhone drawing app with Quartz 2D
I am making a simple iPhone drawing program as a personal side-project.
I capture touches event in a subclassed UIView and render the actual stuff to a seperate CGLayer. After ea …
0
votes
0answers
30 views
CATiledLayer blanking tiles before drawing contents
All,
I'm having trouble getting behavior that I want from CATiledLayer. Is there a way that I can trigger the tiles to redraw without having the side-effect that their areas are …
0
votes
1answer
44 views
iphone: Drawing over MKMapView?
Hi guys
I'm attempting to draw polygons on a mapView. What I did was to add a transparent view on the main view, that matches the bounds of the mapView, and I draw over it. When I …
0
votes
1answer
232 views
UIImageWriteToSavedPhotosAlbum save as PNG with transparency?
I'm using UIImageWriteToSavedPhotosAlbum to save a UIImage to the user's photo album. The problem is that the image doesn't have transparency and is a JPG. I've got the pixel data …
0
votes
0answers
30 views
iPhone Quartz Question
Hi,
I have an image on a view (UIImageView), simple enough. I'd like to get part of that image, selectively change the colors and overlay that on the view (basically I want to ch …
0
votes
2answers
51 views
How to clear and then redraw a quartz drawing
I'm making a complex drawing using quartz based on passed in information. The only part I haven't been able to figure out is how do I clear the lines, rectangles, etc that I've al …
