We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 64ee0b7 + a3d49a3 commit 6a4c01aCopy full SHA for 6a4c01a
2 files changed
docs/notes/bugfix-23100.md
@@ -0,0 +1 @@
1
+# Fix rendering of mobile player when acceleratedRendering is true
engine/src/java/com/runrev/android/nativecontrol/ExtVideoView.java
@@ -188,6 +188,10 @@ private void initVideoView() {
188
mVideoHeight = 0;
189
getHolder().addCallback(mSHCallback);
190
getHolder().setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
191
+
192
+ /* We always want the video's surface view to sit on top of any OpenGL
193
+ * surface view, so set this as a media overlay. */
194
+ setZOrderMediaOverlay(true);
195
setFocusable(true);
196
setFocusableInTouchMode(true);
197
requestFocus();
0 commit comments