added swf_ShapeAddFillStyle2().
authorkramm <kramm>
Mon, 10 Jan 2005 17:38:27 +0000 (17:38 +0000)
committerkramm <kramm>
Mon, 10 Jan 2005 17:38:27 +0000 (17:38 +0000)
lib/modules/swfshape.c
lib/rfxswf.h

index 04cdf71..3c6c4b6 100644 (file)
@@ -297,6 +297,10 @@ int swf_ShapeAddFillStyle(SHAPE * s,U8 type,MATRIX * m,RGBA * color,U16 id_bitma
           
   return (++s->fillstyle.n);
 }
+int swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs)
+{
+    return swf_ShapeAddFillStyle(s, fs->type, &fs->m, &fs->color, fs->id_bitmap, &fs->gradient);
+}
 
 int swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color)
 { return swf_ShapeAddFillStyle(s,FILL_SOLID,NULL,color,0,0);
index 6ea8900..9225807 100644 (file)
@@ -431,6 +431,7 @@ int   swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color);
 int   swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color);
 int   swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip);
 int   swf_ShapeAddGradientFillStyle(SHAPE * s,MATRIX * m,GRADIENT* gradient,int radial);
+int   swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs);
 
 int   swf_SetShapeStyles(TAG * t,SHAPE * s);
 int   swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits);