Re: A incredible problem about core image generated from the opengl texture.
Re: A incredible problem about core image generated from the opengl texture.
- Subject: Re: A incredible problem about core image generated from the opengl texture.
- From: "Stephen Deken" <email@hidden>
- Date: Fri, 6 Apr 2007 12:31:31 -0500
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
email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden