PreetKamal Singh Minhas
Results
1
comments of
PreetKamal Singh Minhas
Inherit from your filter of choice and call the following lines in onInitialized(): ``` runOnDraw(new Runnable() { @Override public void run() { GLES20.glEnable(GLES20.GL_BLEND); GLES20.glBlendFunc(GLES20.GL_SRC_ALPHA, GLES20.GL_SRC_ALPHA); } }); ``` Reasoning: You...