Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
423 views

OpenGL 3.2 context on a Carbon window (OS Lion, Mono)

I'm trying to add modern OS X support to OpenTK framework. Mac OS Lion supports OpenGL 3.2 Core context. I can successfully obtain it by using CGL. However, I can't find a straight way to bind the ...
8
votes
1answer
1k views

What's the difference and compatibility of CGLayer and CALayer?

I'm confusing CGLayer and CALayer. They look similar but why separated double implementations are there? What's the difference and compatibility of CGLayer and CALayer?
4
votes
1answer
165 views

iPhone - encoding and decoding a NSValue

So I read here on SO that I can encode a CGLayerRef to a NSValue using NSValue *myCopy = [[NSValue alloc] initWithBytes:&myLayer objCType:@encode(CGLayerRef)]; but how do I recreate the ...
2
votes
3answers
389 views

iOS: How do I support Retina Display with CGLayer?

I'm drawing a graph on a CALayer in its delegate method drawLayer:inContext:. Now I want to support Retina Display, as the graph looks blurry on the latest devices. For the parts that I draw ...
2
votes
1answer
332 views

Adding Rounded Corners to UIImageView vs Pre-Rendering the UIImage?

I am experimenting with the layer of a UIImageView, in particular adding rounded corners. My question is, What is the impact on performance (if any) by doing the following : [self.imgView.layer ...
2
votes
2answers
2k views

Optimize Core Graphics animated drawing (iPhone)

I have a loop that fires a function 30 times per second. The function changes the position of a couple of points that I use to animate. I draw lines through all the points, meaning that the lines will ...
1
vote
1answer
38 views

CGL vs AGL vs OpenGL vs NSOpenGL vs CoreAnimation(CALayer)

I am trying to understand few things on Mac related to OpenGL framework integration in the form of layers. Well basically when I want to understand 3D technologies present in OS X and which layer is ...
1
vote
1answer
56 views

How to access CGContext for creating CGLayer offscreen

Intention: creating CGLayer offscreen, draw some complicated stuff on it from second thread and use it later for quick drawing on main thread Problem: CGLayerCreateWithContext(context, size, info) ...
1
vote
2answers
52 views

iPhone - pushing and pulling a value from a dictionary to a CGlayer

I have a finger painting view that I am implementing undo/redo. All the drawing occurs on a CGLayer called lineLayer. As soon as the user touches the screen but before any modification is done to the ...
1
vote
0answers
269 views

Save edited image to the iPhone gallery

am working on an app where i am loading one image from the bundle and with the help of quartz i am adding two red circles on that image, the image is loaded in the instance of the UIImageVIew class. ...
1
vote
1answer
148 views

How do I autorelease a CGLayer?

I have CGLayers cached in an NSMutableDictionary where I use them as follows: - (CGLayerRef)getLayerForCacheKey:(CacheKey)cacheKey andProperty:(id)property { NSDictionary *cacheDict = [cacheArray ...
1
vote
3answers
202 views

Struggling to clear ALL DATA from a CGLayer — can it even be done?

We're repetitively making a CGLayer, doing processing, and then releasing it. This happens a lot in real time. Surely there is a lot of overhead in making a whole new CGLayer each time. So... Surely ...
1
vote
0answers
421 views

Creating a custom animation with CGLayers?

Basically, I want to animate a shrinking circle. I've already done this by drawing progressively smaller circles onto CGLayer's, and then using if(index < 30){ [self ...
1
vote
3answers
919 views

iPhone: Crash While Drawing CGLayers Stored in Array

I'm trying to build a drawing app with redo and undo functionality. My idea is to draw lines in a layer in "touchMoved", then saving the layer in "touchEnded". I'm not shure that I am drawing to the ...
1
vote
2answers
825 views

Using CGLayer to Cache Cells in a UITableView

I am trying to improve the performance of scrolling in our app. I have followed all of the generally accepted advice (draw it yourself with CG, the cell is opaque, no subviews, etc.) but it still ...
1
vote
1answer
567 views

Set “opacity” of a CGLayer before draw?

I have UIView subclass - actually a puzzle piece - with 2 different CGLayer initialized at initWithFrame. In drawRect I have to blend this two layer, and the uppermost should have variable alpha ...
1
vote
1answer
972 views

Is CGLayer a good solution?

I want to add a bit of functionality to my App, and I think that using a CGLayer is the best way of doing it, but have never done any Quartz drawing before (other than some basic tutorials). My ...
1
vote
2answers
1k views

Computing a UIImage to be saved to the photo album

I basically want to automatically create a tiled image from a bunch of source images, and then save that to the user's photo album. I'm not having any success drawing a bunch of small UIImage's into ...
1
vote
1answer
3k views

How to use a CGLayer to draw multiple images offscreen

Ultimately I'm working on a box blur function for use on iPhone. That function would take a UIImage and draw transparent copies, first to the sides, then take that image and draw transparent copies ...
0
votes
1answer
64 views

Jaggy paths when blitting an offscreen CGLayer to the current context

In my current project I need to draw a complex background as a background for a few UITableView cells. Since the code for drawing this background is pretty long and CPU heavy when executed in the ...
0
votes
2answers
42 views

How to remove UIView subviews w/out forcing a redraw?

This is somewhat of a hypothetical question, but I can imagine this situation coming up at some point in the future: Let's assume for a moment that I have a freakishly complicated hierarchy of UIViews ...
0
votes
1answer
77 views

Draw CGImageRef & CGBitmapContextRef on CGL context?

I am looking for a way to draw a CGImageref and CGBitmapContextRef on CGL Context?
0
votes
1answer
40 views

Taking snapshot of contents in CGL?

I want to create a image out of Core OpenGL context. I used following code but it creates a black image. So I guess I cannot use glReadPixles there? Any other suggestions please? int myDataLength = ...
0
votes
1answer
164 views

CGL vs OpenGL on Mac

I am trying to figure out the relationship between CGL and OpenGL on Mac platform. More specifically about there context. Do they share context? If yes how? Please give me link to some examples ...
0
votes
1answer
108 views

CGLayerRef in NSValue - when to call retain() or release()?

I am caching some graphics onto CGLayers and then storing them in NSValue objects using @encode (so as to store them in an array). I just wanted to make sure that I handle the retain/release ...
0
votes
0answers
116 views

iPhone: Create CGLayer with gradient point and transparent background

I would like to create a CGLayer, contains a point with gradient in boundary. Because I will use this layer to draw multiple points on the main screen. This is my code: CGRect r = CGRectMake(0, ...
0
votes
3answers
203 views

Issue in adding a shadow to view layer

In one of my view I am adding shadow to a view. Thing is that the shadow shows white spaces on left & right edges. I want to remove these spaces. Here is my code: UIView *myView = [[ISTView ...
0
votes
1answer
253 views

Best way to speed up multiple uses of “CGContextDrawRadialGradient” in drawrect?

I couldn't post the image, but I use the "CGContextDrawRadialGradient" method to draw a shaded blue ball (~40 pixel diameter), it's shadow and to make a "pulsing" white ring around the ball (inner and ...
0
votes
1answer
595 views

Unable to release a CGContextRef (context is from a CGLayer)

When you create a CGLayer like so, and then get the context...it appears to be impossible to release the CGContextRef? Releasing the CGLayerRef itself (apparently) works fine. You'd think you could ...
0
votes
1answer
436 views

Mixing CGLayers and CALayers

Here's the setup: I have a NSView which is a CALayer-backed view, and contains many CALayers. I have a CALayer for the 'background' of the view, and many small CALayers which are sublayers. Sometimes ...
0
votes
0answers
275 views

CGLayer Performance Issues, what do i wrong?

i got a real performance issue on my app after adding a new class. this class extends UIButton. In the initWithFrame: method im setting some parameters like: [self.layer setBorderColor:[[UIColor ...
0
votes
1answer
370 views

Caching to CGLayer slower than redrawing on iPhone

I'm in the process of making a simple drawing program for the iPhone. At the moment, touch events add their location to a list which is connected with a bunch of CGContextAddLineToPoint calls which ...
0
votes
1answer
510 views

CGLayer from an IUView

On iPhone or iPad someone know how we can get a CGLayer (not a CALayer) from an UIView? Regards
0
votes
1answer
389 views

How do I create a CGlayer that has an image drawn to it?

I just need to know hot to create a CGLayer that has an image drawn to it. I am not completely understanding the documentation entirely. Thanks
0
votes
1answer
1k views

Drawing a CGLayer outside the method drawRect: faster?

I'm not really sure, what am I asking... ...but if make layer composites in separate methods, and draw them to the view also outside of the drawRect: method... ...then could my app performance get ...
0
votes
2answers
803 views

The antialias of rotated CGImage/CGlayer seems jaggy, UIImageView's is not

I need to mask a "texture" image with a rotated greyscale image. I found out, that I have to do it with CGImages or CGlayers (if there is a simplier way using UIImageViews only, please let me know ...