public void Draw(gfxContext context, gfxGraphicsFilter filter, gfxMatrix matrix, gfxRect fill,
                         nsIntRect subImage, uint viewportSize, IntPtr aSVGContext, uint aWhichFrame, uint flags)
        {
#if PORT
            _container.Instance.Draw(context, filter, matrix, fill, subImage, viewportSize, aSVGContext, aWhichFrame, flags);
#endif
            throw new NotImplementedException("Need to implement for gecko 45");
        }
示例#2
0
        public ImgContainer ExtractFrame(uint whichFrame, nsIntRect rect, uint flags)
        {
            var img = _container.Instance.ExtractFrame(whichFrame, rect, flags);

            return(new ImgContainer(img));
        }
 public void Draw(gfxContext context, gfxGraphicsFilter filter, gfxMatrix matrix, gfxRect fill, nsIntRect subImage, uint viewportSize, uint flags)
 {
     _container.Instance.Draw(context, filter, matrix, fill, subImage, viewportSize, flags);
 }
示例#4
0
 public void Draw(gfxContext context, gfxGraphicsFilter filter, gfxMatrix matrix, gfxRect fill, nsIntRect subImage, uint viewportSize, uint flags)
 {
     _container.Instance.Draw(context, filter, matrix, fill, subImage, viewportSize, flags);
 }
 public ImgContainer ExtractFrame(uint whichFrame,nsIntRect rect,uint flags)
 {
     var img=_container.Instance.ExtractFrame( whichFrame, rect, flags );
     return new ImgContainer(img);
 }