X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=lib%2Frfxswf.h;h=77ddd222c7fc364b48f7a281c18f365735dd9aaf;hb=3976bb67e34fe25dd05f0e6d9e5a405e5782c400;hp=903efc9f5c3838fb873b1f25b787e0cbe3f8fb2e;hpb=edcb4eeac02833226bc1fb28541a6c158b0c03cd;p=swftools.git 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);