FROM : Stephen Deken
DATE : Fri Apr 06 19:31:31 2007
> CIImage *newImage = [CIImage initWithTexture:_textureName
> size:myCGSize flipped:YES colorSpace:myColorSpace];
You're not allocating anything here. Try:
CIImage *newImage = [[CIImage alloc] initWithTexture:_textureName
size:myCGSize flipped:YES colorSpace:myColorSpace];
HTH
--
Stephen Deken
stephen.<email_removed>
DATE : Fri Apr 06 19:31:31 2007
> CIImage *newImage = [CIImage initWithTexture:_textureName
> size:myCGSize flipped:YES colorSpace:myColorSpace];
You're not allocating anything here. Try:
CIImage *newImage = [[CIImage alloc] initWithTexture:_textureName
size:myCGSize flipped:YES colorSpace:myColorSpace];
HTH
--
Stephen Deken
stephen.<email_removed>
| Related mails | Author | Date |
|---|---|---|
| Stephen Deken | Apr 6, 19:31 | |
| Steve Walter | Apr 7, 02:32 |






Cocoa mail archive

