[... code ...] I get the error "Data depdendent for statements are unsupported" and it highlights the close paren for the outer for loop.Any reason why I'd be seeing this occur often?
You cannot have a for loop with a non-static number of iterations. It's non-static here because radius is an input, not a constant. Behind the scenes, CoreImage unrolls the loops, and this unrolling isn't possible on the fly when the user is in charge of the for-loop conditional.
Your loop is based on going from -size to +size, and size is calculated from the first line, which uses input data. Hence the "data dependent" statement.
-- [ christopher wright ] [EMAIL PROTECTED] http://kineme.net/
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ Do not post admin requests to the list. They will be ignored. Quartzcomposer-dev mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/quartzcomposer-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]

