From: kramm Date: Sun, 16 Mar 2008 10:13:56 +0000 (+0000) Subject: added FILTER_GLOW X-Git-Tag: buttons-working~399 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=e63f0238bd230846d8c25041dcafa970ac069ed6 added FILTER_GLOW --- diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 903efc9..77ddd22 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -1064,9 +1064,22 @@ typedef struct _FILTER_BLUR { int passes; } FILTER_BLUR; +typedef struct _FILTER_GLOW { + U8 type; + RGBA rgba; + double blurx; + double blury; + double strength; + int passes; + char innerglow; + char knockout; + char composite; +} FILTER_GLOW; + void swf_SetFilter(TAG*tag, FILTER*f); FILTER*swf_GetFilter(TAG*tag); FILTER*swf_NewFilter(U8 type); +void swf_DeleteFilter(FILTER*f); void AVM2_InsertStops(SWF*swf);