Re: FxPlug using CIImage with CIFilter behave differently between Motion and Final Cut
site_archiver@lists.apple.com Delivered-To: pro-apps-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer:sender; bh=47OwCz7QwqryezUaeB53/R7kB/8wb5edwtLtxT828tE=; b=i41oradqHKxgb7I7BtCBf8zxw8JzV9/OdPPAM9t4AU1tUC+CiSQ/7a/N03zpTYzyuu ArpXb0NydL1Nnp/kTRfaCciiS354ulL5EVSftYOJWpfVbGdGISSPr5KboM51q8BzmsYQ P2ovDyoM8krHYZnuqwVnSUn6VBP8V7Hz3drwU= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer:sender; b=kHGcMxcnlEGT+gm87JP4Fz5TDFYBK98Q1Ys4tP+o00z++lbPKhCOFJAn1Dr2gnNCMn VGGbSHRHaui7bt8u6jzcMbbgTzCSRrayLpgi0I+ypnxgpLfl1X1++rFHRQSqN8q5HLUs Of6GAf9P3n73mUS+9majZ8e63DzrUgMuVVa/8= Darrin, - Stoney On Oct 2, 2008, at 1:13 PM, Darrin Cardani wrote: Jim, -- Stonewall Ballard stoney@sb.org http://stoney.sb.org/ _______________________________________________ Do not post admin requests to the list. They will be ignored. Pro-apps-dev mailing list (Pro-apps-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/pro-apps-dev/site_archiver%40lists.ap... I've been using an autorelease pool set up at the beginning of renderOutput: and autoreleasing any bitmaps I fetch during that method execution. Any reason why that's a bad idea? If you're never releasing the images the host application gives to you then you are leaking memory and possibly OpenGL textures and you will eventually crash. You do need to call [myImage release] explicitly on any images the host app gives to you. I recommend using them, and then releasing them in your render method, although you could also get them in your -frameSetup::: method and release them in -frameCleanup. This email sent to site_archiver@lists.apple.com
participants (1)
-
Stonewall Ballard