From e63f0238bd230846d8c25041dcafa970ac069ed6 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 16 Mar 2008 10:13:56 +0000 Subject: [PATCH] added FILTER_GLOW --- lib/rfxswf.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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); -- 1.7.10.4