Hu Yang
Hu Yang
@mplackowski I try your solution, but it doesn't work for me. I found this code below of the class GPUImageRenderer, and the 4th param of glClearColor means alpha value, I...
@imrananeuronsolutions I use Bitmap on ImageView instead of using GPUImageView ```java public Bitmap getBitmapWithFilterApplied(Context context, Bitmap bitmap, Filter filter) { if (mImage == null) { mImage = new GPUImage(context.getApplicationContext()); }...
@imrananeuronsolutions Sorry, I haven't tried to use this on GlSurfaceView.
@theGlenn Hey bro, have you solved it ? I have the same situation with you to "show a list of filters applied to same Image" with a RecyclerView. I tried...
I think I've solved it in a different way, I put the ImageView in the ViewHolder instead of GPUImageView, and then create the Bitmap with different filters by GPUImage.getBitmapWithFilterApplied(bitmap), and...