GPUImagePicture无法显示透明度问题

项目需要用到一些滤镜,想使用GPUImage,毕竟效果比较多。使用GPUImagePicture处理图片时,发下导入的图片alpha失效了,现象就是透明的地方变黑了
求指导意见。
https://github.com/BradLarson/GPUImage/pull/1382/files
google了下,有没看懂的,也有试了没效果的,也用过[UIColor clear],没有很好的解决我的问题

 - (void)setupDisplayFiltering;
{
    UIImage *inputImage = [UIImage imageNamed:@"grossini.png"]; // The WID.jpg example is greater than 2048 pixels tall, so it fails on older devices

    sourcePicture = [[GPUImagePicture alloc] initWithImage:inputImage smoothlyScaleOutput:YES];    
    GPUImageView *imageView = (GPUImageView *)self.view;

    [sourcePicture addTarget:imageView];
    [sourcePicture processImage];
}

正常图片
问题截图

http://blog.sina.com.cn/s/blog_9075354e0102uzys.html