Skip navigation.
 
mlRe: A incredible problem about core image generated from the opengl texture.
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>

Related mailsAuthorDate
mlRe: A incredible problem about core image generated from the opengl texture. Stephen Deken Apr 6, 19:31
mlA incredible problem about core image generated from the opengl texture. Steve Walter Apr 7, 02:32