Skip to content

Commit

Permalink
fix: The view covers the intensity-adjust slider. The zOrderOnTop att…
Browse files Browse the repository at this point in the history
…rib is not neccessary.
  • Loading branch information
wysaid committed Nov 23, 2015
1 parent efda5a9 commit 1220db8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ public GPUImageView(Context context, AttributeSet attrs) {

private void init(Context context, AttributeSet attrs) {
mGLSurfaceView = new GPUImageGLSurfaceView(context, attrs);
mGLSurfaceView.setZOrderOnTop(true);
// mGLSurfaceView.setZOrderOnTop(true);
mGLSurfaceView.setZOrderMediaOverlay(true);
mGLSurfaceView.setEGLConfigChooser(8, 8, 8, 8, 16, 0);
mGLSurfaceView.getHolder().setFormat(PixelFormat.TRANSPARENT);
addView(mGLSurfaceView);
Expand Down

0 comments on commit 1220db8

Please sign in to comment.